diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2013-01-23 12:49:34 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2013-01-23 12:49:34 +0400 |
commit | 3544e11a3490b7d753451ad394ef6285a9dc4f98 (patch) | |
tree | 3b8c12d516e7a7df0c762121218e210fd28b4862 /lisp/mh-e/mh-search.el | |
parent | 57ea426945a5bb2669be07572a733f3d12df3640 (diff) | |
download | emacs-3544e11a3490b7d753451ad394ef6285a9dc4f98.tar.gz emacs-3544e11a3490b7d753451ad394ef6285a9dc4f98.tar.bz2 emacs-3544e11a3490b7d753451ad394ef6285a9dc4f98.zip |
* lisp/play/gametree.el (gametree-break-line-here): Use point-marker.
* lisp/mh-e/mh-acros.el (mh-do-at-event-location): Likewise.
* lisp/mh-e/mh-search.el (mh-index-create-imenu-index): Likewise.
* lisp/mh-e/mh-xface.el (mh-x-image-url-display): Likewise.
Diffstat (limited to 'lisp/mh-e/mh-search.el')
-rw-r--r-- | lisp/mh-e/mh-search.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mh-e/mh-search.el b/lisp/mh-e/mh-search.el index a8860263531..d31d0ca495a 100644 --- a/lisp/mh-e/mh-search.el +++ b/lisp/mh-e/mh-search.el @@ -1434,7 +1434,7 @@ being the list of messages originally from that folder." (beginning-of-line) (push (cons (buffer-substring-no-properties (point) (mh-line-end-position)) - (set-marker (make-marker) (point))) + (point-marker)) alist))) (setq imenu--index-alist (nreverse alist))))) |