diff options
| author | Juanma Barranquero | 2006-11-27 13:53:56 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-11-27 13:53:56 +0000 |
| commit | 4789a3cb927763472772971cfc1e74c60f9a1839 (patch) | |
| tree | 82c244ff19ddf0133aaf70d73ccde8febffd6997 | |
| parent | b379356ae173446fb7e74b51fa94aa46a8d575b7 (diff) | |
| download | emacs-4789a3cb927763472772971cfc1e74c60f9a1839.tar.gz emacs-4789a3cb927763472772971cfc1e74c60f9a1839.zip | |
(info-lookup-guess-custom-symbol): "?\ " -> "?\s".
| -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." | |||
| 583 | (point) 'face nil (line-end-position))) | 583 | (point) 'face nil (line-end-position))) |
| 584 | (> end beg)) | 584 | (> end beg)) |
| 585 | (subst-char-in-string | 585 | (subst-char-in-string |
| 586 | ?\ ?\- (buffer-substring-no-properties beg end))) | 586 | ?\s ?\- (buffer-substring-no-properties beg end))) |
| 587 | ((or (and (looking-at (concat "[" significant-chars "]")) | 587 | ((or (and (looking-at (concat "[" significant-chars "]")) |
| 588 | (save-excursion | 588 | (save-excursion |
| 589 | (skip-chars-backward significant-chars) | 589 | (skip-chars-backward significant-chars) |