aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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))