diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-08-12 11:35:57 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-08-12 11:35:57 +0200 |
commit | 9229c658550f167dbfb1c40c8a0e689020b008dd (patch) | |
tree | 835c4b113fe70e3f9ac1463dea1d6e5bd6fa867f | |
parent | 0fd0912879f70f410cd336e538d8c515508126c7 (diff) | |
download | emacs-9229c658550f167dbfb1c40c8a0e689020b008dd.tar.gz emacs-9229c658550f167dbfb1c40c8a0e689020b008dd.tar.bz2 emacs-9229c658550f167dbfb1c40c8a0e689020b008dd.zip |
* descr-text.el (describe-char): Put the overlays over the
"displayed as" character.
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/descr-text.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 716555f2ffe..f1f78c20bef 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-08-12 Andreas Schwab <schwab@linux-m68k.org> + + * descr-text.el (describe-char): Put the overlays over the + "displayed as" character. + 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com> * calc/calc-units.el (math-default-units-table): Give an diff --git a/lisp/descr-text.el b/lisp/descr-text.el index bf0e413d357..34d61b80d66 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -689,7 +689,7 @@ relevant to POS." (when overlays (save-excursion (goto-char (point-min)) - (re-search-forward "character:[ \t\n]+") + (re-search-forward "(displayed as ") (let ((end (+ (point) (length char-description)))) (mapc (lambda (props) (let ((o (make-overlay (point) end))) |