diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 13:53:56 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 13:53:56 +0000 |
commit | 4789a3cb927763472772971cfc1e74c60f9a1839 (patch) | |
tree | 82c244ff19ddf0133aaf70d73ccde8febffd6997 /lisp/info-look.el | |
parent | b379356ae173446fb7e74b51fa94aa46a8d575b7 (diff) | |
download | emacs-4789a3cb927763472772971cfc1e74c60f9a1839.tar.gz |
(info-lookup-guess-custom-symbol): "?\ " -> "?\s".
Diffstat (limited to 'lisp/info-look.el')
-rw-r--r-- | lisp/info-look.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info-look.el b/lisp/info-look.el index 3918eb00eee..5097f2f5fdc 100644 --- a/lisp/info-look.el +++ b/lisp/info-look.el @@ -583,7 +583,7 @@ Return nil if there is nothing appropriate in the buffer near point." (point) 'face nil (line-end-position))) (> end beg)) (subst-char-in-string - ?\ ?\- (buffer-substring-no-properties beg end))) + ?\s ?\- (buffer-substring-no-properties beg end))) ((or (and (looking-at (concat "[" significant-chars "]")) (save-excursion (skip-chars-backward significant-chars) |