aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/isearch.el
diff options
context:
space:
mode:
authorRichard M. Stallman1993-04-14 19:40:53 +0000
committerRichard M. Stallman1993-04-14 19:40:53 +0000
commitb68c164d278acb67d2bda71ae4efffa14abb93be (patch)
tree214e3bd6183148999f6655a99878521f9a26b7de /lisp/isearch.el
parent45025813de8b808465fb84bc40543b7806209b3c (diff)
downloademacs-b68c164d278acb67d2bda71ae4efffa14abb93be.tar.gz
emacs-b68c164d278acb67d2bda71ae4efffa14abb93be.zip
Doc fixes.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r--lisp/isearch.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 976ba9daf7e..7366d926c24 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -4,7 +4,7 @@
4 4
5;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> 5;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
6 6
7;; |$Date: 1993/03/30 19:38:34 $|$Revision: 1.28 $ 7;; |$Date: 1993/03/30 19:42:10 $|$Revision: 1.29 $
8 8
9;; This file is not yet part of GNU Emacs, but it is based almost 9;; This file is not yet part of GNU Emacs, but it is based almost
10;; entirely on isearch.el which is part of GNU Emacs. 10;; entirely on isearch.el which is part of GNU Emacs.
@@ -92,8 +92,11 @@
92;;;==================================================================== 92;;;====================================================================
93;;; Change History 93;;; Change History
94 94
95;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.28 1993/03/30 19:38:34 rms Exp rms $ 95;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.29 1993/03/30 19:42:10 rms Exp rms $
96;;; $Log: isearch.el,v $ 96;;; $Log: isearch.el,v $
97; Revision 1.29 1993/03/30 19:42:10 rms
98; (isearch-done): Customize the message about mark.
99;
97; Revision 1.28 1993/03/30 19:38:34 rms 100; Revision 1.28 1993/03/30 19:38:34 rms
98; (isearch-mode-map): Delete the binding for C-h. 101; (isearch-mode-map): Delete the binding for C-h.
99; 102;
@@ -1101,13 +1104,13 @@ Obsolete."
1101 (isearch-process-search-char ?\n)) 1104 (isearch-process-search-char ?\n))
1102 1105
1103(defun isearch-printing-char () 1106(defun isearch-printing-char ()
1104 "Any other printing character => add it to the search string and search." 1107 "Add this ordinary printing character to the search string and search."
1105 (interactive) 1108 (interactive)
1106 (isearch-process-search-char (isearch-last-command-char))) 1109 (isearch-process-search-char (isearch-last-command-char)))
1107 1110
1108(defun isearch-whitespace-chars () 1111(defun isearch-whitespace-chars ()
1109 "Match all whitespace chars, if in regexp mode. 1112 "Match all whitespace chars, if in regexp mode.
1110If not in regexp mode, activate word search." 1113If you want to search for just a space, type C-q SPC."
1111 (interactive) 1114 (interactive)
1112 (if isearch-regexp 1115 (if isearch-regexp
1113 (if search-whitespace-regexp 1116 (if search-whitespace-regexp