aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-06-17 20:35:16 +0000
committerRichard M. Stallman1994-06-17 20:35:16 +0000
commit67a69ba62f3a845b185d0f88ef421eb489a0dac2 (patch)
tree0e9d28c7247f7e889864ae3592582cd8056b1a3d
parent07b3798c76394425f32e29d94174ad349d0af750 (diff)
downloademacs-67a69ba62f3a845b185d0f88ef421eb489a0dac2.tar.gz
emacs-67a69ba62f3a845b185d0f88ef421eb489a0dac2.zip
(finder-commentary): Fix error message syntax.
-rw-r--r--lisp/finder.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/finder.el b/lisp/finder.el
index 3a18d6daa93..c13be5c9206 100644
--- a/lisp/finder.el
+++ b/lisp/finder.el
@@ -209,7 +209,7 @@ arguments compiles from `load-path'."
209 (interactive) 209 (interactive)
210 (let* ((str (lm-commentary (finder-find-library file)))) 210 (let* ((str (lm-commentary (finder-find-library file))))
211 (if (null str) 211 (if (null str)
212 (error "Can't find any Commentary section.")) 212 (error "Can't find any Commentary section"))
213 (pop-to-buffer "*Finder*") 213 (pop-to-buffer "*Finder*")
214 (setq buffer-read-only nil) 214 (setq buffer-read-only nil)
215 (erase-buffer) 215 (erase-buffer)