emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/man.el


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/man.el
Date: Sun, 28 Sep 2003 04:30:21 -0400

Index: emacs/lisp/man.el
diff -c emacs/lisp/man.el:1.128 emacs/lisp/man.el:1.129
*** emacs/lisp/man.el:1.128     Mon Sep  1 11:45:13 2003
--- emacs/lisp/man.el   Sun Sep 28 04:30:20 2003
***************
*** 572,577 ****
--- 572,580 ----
        (setq word (buffer-substring-no-properties start (point))))
        (if (string-match "[._]+$" word)
          (setq word (substring word 0 (match-beginning 0))))
+       ;; If looking at something like *strcat(... , remove the '*'
+       (if (string-match "^*" word)
+         (setq word (substring word 1)))
        ;; If looking at something like ioctl(2) or brc(1M), include the
        ;; section number in the returned value.  Remove text properties.
        (concat word




reply via email to

[Prev in Thread] Current Thread [Next in Thread]