diff options
| author | Nick Roberts | 2006-06-28 23:29:54 +0000 |
|---|---|---|
| committer | Nick Roberts | 2006-06-28 23:29:54 +0000 |
| commit | a79d34741983e54de57c1b752dbdad4bfc3bc608 (patch) | |
| tree | 837b2082fe823f84663b69b19d4b0d00b76229b6 | |
| parent | c7b93b443795c6064bbadf07acba9ba496cb5656 (diff) | |
| download | emacs-a79d34741983e54de57c1b752dbdad4bfc3bc608.tar.gz emacs-a79d34741983e54de57c1b752dbdad4bfc3bc608.zip | |
(help-xref-symbol-regexp): Add property as a keyword for ignoring links.
| -rw-r--r-- | lisp/help-mode.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index 0c6e0f47453..f4ab3de5a4a 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el | |||
| @@ -238,9 +238,9 @@ Commands: | |||
| 238 | 238 | ||
| 239 | (defconst help-xref-symbol-regexp | 239 | (defconst help-xref-symbol-regexp |
| 240 | (purecopy (concat "\\(\\<\\(\\(variable\\|option\\)\\|" ; Link to var | 240 | (purecopy (concat "\\(\\<\\(\\(variable\\|option\\)\\|" ; Link to var |
| 241 | "\\(function\\|command\\)\\|" ; Link to function | 241 | "\\(function\\|command\\)\\|" ; Link to function |
| 242 | "\\(face\\)\\|" ; Link to face | 242 | "\\(face\\)\\|" ; Link to face |
| 243 | "\\(symbol\\|program\\)\\|" ; Don't link | 243 | "\\(symbol\\|program\\|property\\)\\|" ; Don't link |
| 244 | "\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)" | 244 | "\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)" |
| 245 | "[ \t\n]+\\)?" | 245 | "[ \t\n]+\\)?" |
| 246 | ;; Note starting with word-syntax character: | 246 | ;; Note starting with word-syntax character: |