diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-06-22 05:11:36 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-06-22 05:11:36 +0000 |
commit | 9a62cb631928b99c7c263e2d24669999b0de8453 (patch) | |
tree | d596238bdc860b68363a3a287f4948a87b79ec67 /lisp/emulation | |
parent | a814e9df17de37808432cb26c24e26e93fb8dc35 (diff) | |
download | emacs-9a62cb631928b99c7c263e2d24669999b0de8453.tar.gz |
(vip-push-mark-silent): Use (mark t).
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/vip.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/vip.el b/lisp/emulation/vip.el index 50a254dfc09..c887d9123e0 100644 --- a/lisp/emulation/vip.el +++ b/lisp/emulation/vip.el @@ -136,7 +136,7 @@ bound to delete-backward-char.") (defun vip-push-mark-silent (&optional location) "Set mark at LOCATION (point, by default) and push old mark on mark ring. No message." - (if (null (mark)) + (if (null (mark t)) nil (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring)) (if (> (length mark-ring) mark-ring-max) |