diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-04-05 09:43:14 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-04-05 09:43:43 -0700 |
commit | 0074ed536b560e60f63aead2ac73ec004d0bcfa2 (patch) | |
tree | 7b615e7cc22df5e2cbb229480bbef64d5e5c656d /lisp | |
parent | f1d34d9136fbf1dc2cf58b5ba36311451f024956 (diff) | |
download | emacs-0074ed536b560e60f63aead2ac73ec004d0bcfa2.tar.gz |
* lisp/info.el (Info-search): Fix typo in April 1 change.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index 81e5d29f827..92e7c24ab1d 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2008,7 +2008,7 @@ If DIRECTION is `backward', search in the reverse direction." (unless (if backward (re-search-backward regexp nil t) (re-search-forward regexp nil t)) - (signal 'user-seach-failed (list regexp)))))) + (signal 'user-search-failed (list regexp)))))) (if (and bound (not found)) (signal 'user-search-failed (list regexp))) |