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/play | |
parent | 57ea426945a5bb2669be07572a733f3d12df3640 (diff) | |
download | emacs-3544e11a3490b7d753451ad394ef6285a9dc4f98.tar.gz |
* 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/play')
-rw-r--r-- | lisp/play/gametree.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/play/gametree.el b/lisp/play/gametree.el index 5cd39d535c8..3daf9d5f784 100644 --- a/lisp/play/gametree.el +++ b/lisp/play/gametree.el @@ -435,7 +435,7 @@ only work of Black's moves are explicitly numbered, for instance gametree-half-ply-regexp)) limit)) (goto-char (match-beginning 0)))) (gametree-transpose-following-leaves) - (let* ((pt (set-marker (make-marker) (point))) + (let* ((pt (point-marker)) (plys (gametree-current-branch-ply)) (depth (gametree-current-branch-depth)) (old-depth depth)) |