aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2010-08-04 20:04:29 +0200
committerStefan Monnier <[email protected]>2010-08-04 20:04:29 +0200
commitc613687be4a79df9fe2e3ef12b4fe3fecd07a591 (patch)
tree9ab460048f950fa4017e96ad31b49303e0ed0e1b
parent9ebc731b45fea0b4d7d547cb37ca2675d5940106 (diff)
* lisp/simple.el (exchange-dot-and-mark): Mark obsolete, finally.
-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 00f6fcfac0..cd9e142f8e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2010-08-04 Stefan Monnier <[email protected]>
+
+ * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
+
2010-08-03 Juanma Barranquero <[email protected]>
* progmodes/which-func.el (which-func-format): Split help-echo text
diff --git a/lisp/simple.el b/lisp/simple.el
index 6c8725a813..d0c27656e4 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -3819,7 +3819,8 @@ Does not set point. Does nothing if mark ring is empty."
(setq mark-ring (cdr mark-ring)))
(deactivate-mark))
-(defalias 'exchange-dot-and-mark 'exchange-point-and-mark)
+(define-obsolete-function-alias
+ 'exchange-dot-and-mark 'exchange-point-and-mark "23.3")
(defun exchange-point-and-mark (&optional arg)
"Put the mark where point is now, and point where the mark is now.
This command works even when the mark is not active,