diff lisp/subr.el @ 56537:69db3634588e

(butlast, event-modifiers, event-basic-type): Doc fixes.
author John Paul Wallington <jpw@pobox.com>
date Sun, 25 Jul 2004 05:45:13 +0000
parents 78189fca7611
children 1bef61b14e78 4e92102a0172 c08afac24467
line wrap: on
line diff
--- a/lisp/subr.el	Sat Jul 24 23:48:49 2004 +0000
+++ b/lisp/subr.el	Sun Jul 25 05:45:13 2004 +0000
@@ -198,7 +198,7 @@
     list))
 
 (defun butlast (list &optional n)
-  "Returns a copy of LIST with the last N elements removed."
+  "Return a copy of LIST with the last N elements removed."
   (if (and n (<= n 0)) list
     (nbutlast (copy-sequence list) n)))
 
@@ -641,7 +641,7 @@
 	   (get (car obj) 'event-symbol-elements))))
 
 (defun event-modifiers (event)
-  "Returns a list of symbols representing the modifier keys in event EVENT.
+  "Return a list of symbols representing the modifier keys in event EVENT.
 The elements of the list may include `meta', `control',
 `shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
 and `down'."
@@ -670,7 +670,7 @@
 	list))))
 
 (defun event-basic-type (event)
-  "Returns the basic type of the given event (all modifiers removed).
+  "Return the basic type of the given event (all modifiers removed).
 The value is a printing character (not upper case) or a symbol."
   (if (consp event)
       (setq event (car event)))