aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-03-01 18:30:44 +0000
committerDave Love2001-03-01 18:30:44 +0000
commit7a0485b2bf09903147efdcd06c27e6ce9c3348c3 (patch)
treef8bb4d331686013c1b28f1528a35b6a8266de115
parentd617f6df4c9433730060585d8b27ce3d691ade7f (diff)
downloademacs-7a0485b2bf09903147efdcd06c27e6ce9c3348c3.tar.gz
emacs-7a0485b2bf09903147efdcd06c27e6ce9c3348c3.zip
(event-basic-type): Doc fix.
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 269ff1f2b1f..1a2ac5df1cd 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -534,7 +534,7 @@ and `down'."
534 534
535(defun event-basic-type (event) 535(defun event-basic-type (event)
536 "Returns the basic type of the given event (all modifiers removed). 536 "Returns the basic type of the given event (all modifiers removed).
537The value is an ASCII printing character (not upper case) or a symbol." 537The value is a printing character (not upper case) or a symbol."
538 (if (consp event) 538 (if (consp event)
539 (setq event (car event))) 539 (setq event (car event)))
540 (if (symbolp event) 540 (if (symbolp event)