aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-09-06 07:13:27 +0000
committerJuanma Barranquero2002-09-06 07:13:27 +0000
commit2251e3edaf3cbb168b987d3c4541b185fc650955 (patch)
treec65cd97d03fdd6e3575fc15651cfe391b47751c3
parent07c209a089d370274930eef56b40e18c0f5e37b9 (diff)
downloademacs-2251e3edaf3cbb168b987d3c4541b185fc650955.tar.gz
emacs-2251e3edaf3cbb168b987d3c4541b185fc650955.zip
(find-function-search-for-symbol): Fix spacing.
-rw-r--r--lisp/emacs-lisp/find-func.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index e305fac2116..1225333ed26 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -115,7 +115,7 @@ See the functions `find-function' and `find-variable'."
115(defun find-function-search-for-symbol (symbol variable-p library) 115(defun find-function-search-for-symbol (symbol variable-p library)
116 "Search for SYMBOL. 116 "Search for SYMBOL.
117If VARIABLE-P is nil, `find-function-regexp' is used, otherwise 117If VARIABLE-P is nil, `find-function-regexp' is used, otherwise
118`find-variable-regexp' is used. The search is done in library LIBRARY." 118`find-variable-regexp' is used. The search is done in library LIBRARY."
119 (if (null library) 119 (if (null library)
120 (error "Don't know where `%s' is defined" symbol)) 120 (error "Don't know where `%s' is defined" symbol))
121 ;; Some functions are defined as part of the construct 121 ;; Some functions are defined as part of the construct