diff options
| author | Richard M. Stallman | 1998-06-09 03:47:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-06-09 03:47:04 +0000 |
| commit | 4f103eaae6b28f48c4b0fa51e3e0fb1a086a6cc5 (patch) | |
| tree | 610adc3f1d687ddfe9ab88543057c70a1f4bc278 | |
| parent | 16417dd9e9fbb18c170371d5292c76b3f51d2bcd (diff) | |
| download | emacs-4f103eaae6b28f48c4b0fa51e3e0fb1a086a6cc5.tar.gz emacs-4f103eaae6b28f48c4b0fa51e3e0fb1a086a6cc5.zip | |
Comment change.
| -rw-r--r-- | lisp/help.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el index 8d9f94f4254..e1a65c79e85 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -738,8 +738,10 @@ Returns the documentation as a string, also." | |||
| 738 | (help-setup-xref (list #'describe-variable variable) (interactive-p)) | 738 | (help-setup-xref (list #'describe-variable variable) (interactive-p)) |
| 739 | 739 | ||
| 740 | ;; Make a link to customize if this variable can be customized. | 740 | ;; Make a link to customize if this variable can be customized. |
| 741 | (if (or (get variable 'custom-type) | 741 | ;; Note, it is not reliable to test for a custom-type property |
| 742 | (user-variable-p variable)) | 742 | ;; because those are only present after the var's definition |
| 743 | ;; has been loaded. | ||
| 744 | (if (user-variable-p variable) | ||
| 743 | (let ((customize-label "customize")) | 745 | (let ((customize-label "customize")) |
| 744 | (terpri) | 746 | (terpri) |
| 745 | (terpri) | 747 | (terpri) |