changeset 22004:79a3c4eba19f

(widgets: sexp, variable, list, vector): Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Sat, 09 May 1998 07:12:14 +0000
parents ea83fc4c4f77
children 863230e3e248
files lisp/wid-edit.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/wid-edit.el	Sat May 09 07:02:50 1998 +0000
+++ b/lisp/wid-edit.el	Sat May 09 07:12:14 1998 +0000
@@ -3059,7 +3059,7 @@
 
 (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 @@
   )
 
 (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 @@
 	     (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