# HG changeset patch # User Stefan Monnier # Date 1280945069 -7200 # Node ID ad23e0fe40f4c4dd2cff8ee38736cc5da81ebd7a # Parent b1689e2cce221a02ecb687d2aa2b40cd5c5471d4 * lisp/simple.el (exchange-dot-and-mark): Mark obsolete, finally. diff -r b1689e2cce22 -r ad23e0fe40f4 .bzrignore --- a/.bzrignore Tue Aug 03 18:39:37 2010 +0200 +++ b/.bzrignore Wed Aug 04 20:04:29 2010 +0200 @@ -68,3 +68,4 @@ src/core core lib-src/stamp-* ++* diff -r b1689e2cce22 -r ad23e0fe40f4 lisp/ChangeLog --- a/lisp/ChangeLog Tue Aug 03 18:39:37 2010 +0200 +++ b/lisp/ChangeLog Wed Aug 04 20:04:29 2010 +0200 @@ -1,3 +1,7 @@ +2010-08-04 Stefan Monnier + + * simple.el (exchange-dot-and-mark): Mark obsolete, finally. + 2010-08-03 Juanma Barranquero * progmodes/which-func.el (which-func-format): Split help-echo text diff -r b1689e2cce22 -r ad23e0fe40f4 lisp/simple.el --- a/lisp/simple.el Tue Aug 03 18:39:37 2010 +0200 +++ b/lisp/simple.el Wed Aug 04 20:04:29 2010 +0200 @@ -3819,7 +3819,8 @@ (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,