]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment change.
authorRichard M. Stallman <rms@gnu.org>
Sat, 21 Jun 1997 17:31:29 +0000 (17:31 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 21 Jun 1997 17:31:29 +0000 (17:31 +0000)
lisp/wid-edit.el

index ec9fdcdc596dc2b7c30a01f268e3369473fb63f1..898ad25924d526f9bb2a56cdace5df64008ee149 100644 (file)
@@ -2636,10 +2636,11 @@ when he invoked the menu."
   (concat "Describe the `" (widget-get widget :value) "' symbol."))
 
 (defun widget-documentation-link-action (widget &optional event)
-  "Run apropos on WIDGET's value.  Ignore optional argument EVENT."
+  "Display documentation for WIDGET's value.  Ignore optional argument EVENT."
   (let* ((string (widget-get widget :value))
         (symbol (intern string)))
     (if (and (fboundp symbol) (boundp symbol))
+       ;; If there are two doc strings, give the user a way to pick one.
        (apropos (concat "\\`" (regexp-quote string) "\\'"))
       (if (fboundp symbol)
          (describe-function symbol)