aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2005-12-20 17:27:35 +0000
committerChong Yidong2005-12-20 17:27:35 +0000
commit7f5bb182d21108ffbbe63d18b65df81df013c2a2 (patch)
treef5f567312a78741da1783b5d79885ae2ba02521d
parentcf5374aa150ef8d1bd0ab27017548a9cfce39fa7 (diff)
downloademacs-7f5bb182d21108ffbbe63d18b65df81df013c2a2.tar.gz
emacs-7f5bb182d21108ffbbe63d18b65df81df013c2a2.zip
Typo.
-rw-r--r--lisp/longlines.el4
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."
111 (add-hook 'before-revert-hook 'longlines-before-revert-hook nil t) 111 (add-hook 'before-revert-hook 'longlines-before-revert-hook nil t)
112 (make-local-variable 'buffer-substring-filters) 112 (make-local-variable 'buffer-substring-filters)
113 (set (make-local-variable 'isearch-search-fun-function) 113 (set (make-local-variable 'isearch-search-fun-function)
114 'longlinges-search-function) 114 'longlines-search-function)
115 (add-to-list 'buffer-substring-filters 'longlines-encode-string) 115 (add-to-list 'buffer-substring-filters 'longlines-encode-string)
116 (when longlines-wrap-follows-window-size 116 (when longlines-wrap-follows-window-size
117 (set (make-local-variable 'fill-column) 117 (set (make-local-variable 'fill-column)
@@ -424,7 +424,7 @@ This is called by `window-size-change-functions'."
424 424
425;; Isearch 425;; Isearch
426 426
427(defun longlinges-search-function () 427(defun longlines-search-function ()
428 (cond 428 (cond
429 (isearch-word 429 (isearch-word
430 (if isearch-forward 'word-search-forward 'word-search-backward)) 430 (if isearch-forward 'word-search-forward 'word-search-backward))