diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2005-12-20 17:27:35 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2005-12-20 17:27:35 +0000 |
commit | 7f5bb182d21108ffbbe63d18b65df81df013c2a2 (patch) | |
tree | f5f567312a78741da1783b5d79885ae2ba02521d /lisp/longlines.el | |
parent | cf5374aa150ef8d1bd0ab27017548a9cfce39fa7 (diff) | |
download | emacs-7f5bb182d21108ffbbe63d18b65df81df013c2a2.tar.gz |
Typo.
Diffstat (limited to 'lisp/longlines.el')
-rw-r--r-- | lisp/longlines.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/longlines.el b/lisp/longlines.el index 5ec2f0d8db6..31400758772 100644 --- a/lisp/longlines.el +++ b/lisp/longlines.el @@ -111,7 +111,7 @@ are indicated with a symbol." (add-hook 'before-revert-hook 'longlines-before-revert-hook nil t) (make-local-variable 'buffer-substring-filters) (set (make-local-variable 'isearch-search-fun-function) - 'longlinges-search-function) + 'longlines-search-function) (add-to-list 'buffer-substring-filters 'longlines-encode-string) (when longlines-wrap-follows-window-size (set (make-local-variable 'fill-column) @@ -424,7 +424,7 @@ This is called by `window-size-change-functions'." ;; Isearch -(defun longlinges-search-function () +(defun longlines-search-function () (cond (isearch-word (if isearch-forward 'word-search-forward 'word-search-backward)) |