diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-12-04 00:02:42 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-12-04 00:02:42 -0800 |
commit | c80e3b4aed2e70eb6d8445d786c0df770094e9e1 (patch) | |
tree | e44fe2f2604d66890ec2442ea23e73ee5011907a /lisp/wid-edit.el | |
parent | a24bf23e0f6e5cea917b77cc455314cdcc31be5b (diff) | |
download | emacs-c80e3b4aed2e70eb6d8445d786c0df770094e9e1.tar.gz |
Spelling fixes.
Diffstat (limited to 'lisp/wid-edit.el')
-rw-r--r-- | lisp/wid-edit.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 8c4df9fc9cf..07eccaff4fb 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -295,10 +295,10 @@ minibuffer." (error "Canceled")) value)))) -(defun widget-remove-if (predictate list) +(defun widget-remove-if (predicate list) (let (result (tail list)) (while tail - (or (funcall predictate (car tail)) + (or (funcall predicate (car tail)) (setq result (cons (car tail) result))) (setq tail (cdr tail))) (nreverse result))) @@ -577,7 +577,7 @@ This is only meaningful for radio buttons or checkboxes in a list." "Map FUNCTION over the buttons in BUFFER. FUNCTION is called with the arguments WIDGET and MAPARG. -If FUNCTION returns non-nil, the walk is cancelled. +If FUNCTION returns non-nil, the walk is canceled. The arguments MAPARG, and BUFFER default to nil and (current-buffer), respectively." |