summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2008-02-04 16:54:05 +0000
committerRichard M. Stallman <rms@gnu.org>2008-02-04 16:54:05 +0000
commitf4c4910c9e72b4e3f3cbfed42b0203cde1e8f22f (patch)
treea93c4e2d7f76b5e923910e943e7dd940b3182947 /lisp/emacs-lisp
parent7e2a60001ef4611850e77105dac5ec443a023288 (diff)
downloademacs-f4c4910c9e72b4e3f3cbfed42b0203cde1e8f22f.tar.gz
Comment changes.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/edebug.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index b988a8ac79d..e825f2434b4 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -1496,7 +1496,7 @@ expressions; a `progn' form will be returned enclosing these forms."
(cond
((symbolp head)
(cond
- ((null head) nil) ; () is legal.
+ ((null head) nil) ; () is valid.
((eq head 'interactive-p)
;; Special case: replace (interactive-p) with variable
(setq edebug-def-interactive 'check-it)
@@ -2076,7 +2076,7 @@ expressions; a `progn' form will be returned enclosing these forms."
;; doesn't handle (a . ,b). The straightforward fix:
;; (backquote-form . [&or nil backquote-form])
;; uses up too much stack space.
- ;; Note that `(foo . ,@bar) is not legal, so we don't need to handle it.
+ ;; Note that `(foo . ,@bar) is not valid, so we don't need to handle it.
(backquote-form [&rest [&not ","] backquote-form]
. [&or nil backquote-form])
;; If you use dotted forms in backquotes, replace the previous line