aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/simple.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 00f6fcfac02..cd9e142f8e7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
4
12010-08-03 Juanma Barranquero <lekktu@gmail.com> 52010-08-03 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * progmodes/which-func.el (which-func-format): Split help-echo text 7 * progmodes/which-func.el (which-func-format): Split help-echo text
diff --git a/lisp/simple.el b/lisp/simple.el
index 6c8725a813f..d0c27656e41 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -3819,7 +3819,8 @@ Does not set point. Does nothing if mark ring is empty."
3819 (setq mark-ring (cdr mark-ring))) 3819 (setq mark-ring (cdr mark-ring)))
3820 (deactivate-mark)) 3820 (deactivate-mark))
3821 3821
3822(defalias 'exchange-dot-and-mark 'exchange-point-and-mark) 3822(define-obsolete-function-alias
3823 'exchange-dot-and-mark 'exchange-point-and-mark "23.3")
3823(defun exchange-point-and-mark (&optional arg) 3824(defun exchange-point-and-mark (&optional arg)
3824 "Put the mark where point is now, and point where the mark is now. 3825 "Put the mark where point is now, and point where the mark is now.
3825This command works even when the mark is not active, 3826This command works even when the mark is not active,