]> git.eshelyaron.com Git - emacs.git/commitdiff
Remember: Use define-obsolete-function-alias for `remember-buffer'.
authorMichael Olson <mwolson@gnu.org>
Sat, 3 Nov 2007 20:45:20 +0000 (20:45 +0000)
committerMichael Olson <mwolson@gnu.org>
Sat, 3 Nov 2007 20:45:20 +0000 (20:45 +0000)
doc/misc/ChangeLog
doc/misc/remember.texi
lisp/ChangeLog
lisp/textmodes/remember.el

index 489e4ec29e7bc01f5a3003dd4ca9f57a03922bbd..409692bdeb33d51b54a6bf6b0830c6d8373c6f44 100644 (file)
@@ -1,3 +1,8 @@
+2007-11-03  Michael Olson  <mwolson@gnu.org>
+
+       * remember.texi: Change mentions of remember-buffer to
+       remember-finalize throughout.
+
 2007-10-30  Michael Olson  <mwolson@gnu.org>
 
        * remember.texi (Copying): Remove.
index 8b981232b9dd63a23743b9b3b763a90c5ef34737..41d1777bf5a0b4dc736642ba8a3ce1fc08af6b5a 100644 (file)
@@ -202,11 +202,11 @@ the headline, and the rest of the buffer will contain the body of the
 note.
 
 @item
-Type @kbd{C-c C-c} (@code{remember-buffer}) to save the note and close
+Type @kbd{C-c C-c} (@code{remember-finalize}) to save the note and close
 the @samp{*Remember*} buffer.
 @end itemize
 
-By default, @code{remember-buffer} saves the note in @file{~/.notes}.
+By default, @code{remember-finalize} saves the note in @file{~/.notes}.
 You can edit it now to see the remembered and timestamped note. You
 can edit this file however you want. New entries will always be added
 to the end.
@@ -278,7 +278,7 @@ Remember the contents of the current clipboard.  This is most useful
 for remembering things from Netscape or other X Windows applications.
 @end defun
 
-@defun remember-buffer
+@defun remember-finalize
 Remember the contents of the current buffer.
 @end defun
 
@@ -297,13 +297,13 @@ the data for latter retrieval, and possible indexing.
 
 @table @kbd
 
-@item C-c C-c (`remember-buffer')
+@item C-c C-c (`remember-finalize')
 Remember the contents of the current buffer.
 
 @item C-c C-k (`remember-destroy')
 Destroy the current *Remember* buffer.
 
-@item C-x C-s (`remember-buffer')
+@item C-x C-s (`remember-finalize')
 Remember the contents of the current buffer.
 
 @end table
index 8562f6dbbe6f42e2cead5ee8d3f9207076b207f2..e9e6d75b911d65eca72d907b6e0a0fcc4e333eb8 100644 (file)
@@ -1,3 +1,8 @@
+2007-11-03  Michael Olson  <mwolson@gnu.org>
+
+       * textmodes/remember.el (remember-buffer): Use
+       define-obsolete-function-alias rather than defalias.
+
 2007-11-03  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
 
        * simple.el (bad-packages-alist): Anchor semantic regexp.
index 37290fe19e8f8aa062a42f93d1f2ad2a6328f7e1..7249f1d4c5772bdaf4ad97c1b4a26020fb690334 100644 (file)
@@ -431,7 +431,7 @@ application."
   (remember-region (point-min) (point-max)))
 
 ;; Org needs this
-(defalias 'remember-buffer 'remember-finalize)
+(define-obsolete-function-alias 'remember-buffer 'remember-finalize)
 
 (defun remember-destroy ()
   "Destroy the current *Remember* buffer."