From: Richard M. Stallman Date: Sat, 9 May 1998 07:12:14 +0000 (+0000) Subject: (widgets: sexp, variable, list, vector): Doc fixes. X-Git-Tag: emacs-20.3~1073 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=be96282a734be4704746d54f0bcc890ad0532a6f;p=emacs.git (widgets: sexp, variable, list, vector): Doc fixes. --- diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 5cb487be063..3e1979012ba 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -3059,7 +3059,7 @@ It will read a directory name from the minibuffer when invoked." (define-widget 'variable 'symbol ;; Should complete on variables. - "A lisp variable." + "A Lisp variable." :prompt-match 'boundp :prompt-history 'widget-variable-prompt-value-history :tag "Variable") @@ -3100,7 +3100,7 @@ It will read a directory name from the minibuffer when invoked." ) (define-widget 'sexp 'editable-field - "An arbitrary lisp expression." + "An arbitrary Lisp expression." :tag "Lisp expression" :format "%{%t%}: %v" :value nil @@ -3223,12 +3223,12 @@ To use this type, you must define :match or :match-alternatives." (integerp value)))) (define-widget 'list 'group - "A lisp list." + "A Lisp list." :tag "List" :format "%{%t%}:\n%v") (define-widget 'vector 'group - "A lisp vector." + "A Lisp vector." :tag "Vector" :format "%{%t%}:\n%v" :match 'widget-vector-match