emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/bindings.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/bindings.el
Date: Sat, 24 Nov 2001 18:57:30 -0500

Index: emacs/lisp/bindings.el
diff -u emacs/lisp/bindings.el:1.90 emacs/lisp/bindings.el:1.91
--- emacs/lisp/bindings.el:1.90 Mon Nov 19 11:32:37 2001
+++ emacs/lisp/bindings.el      Sat Nov 24 18:57:29 2001
@@ -272,15 +272,15 @@
 (defvar mode-line-mode-menu-keymap nil "\
 Keymap for mode operations menu in the mode line.")
 
-(defun last-buffer () "
+(defun last-buffer () "\
 Return the last non-hidden buffer in the buffer list."
   (let ((list (reverse (buffer-list))))
     (while (eq (aref (buffer-name (car list)) 0) ? )
       (setq list (cdr list)))
     (car list)))
 
-(defun unbury-buffer () "
-Switch to the `last-buffer'."
+(defun unbury-buffer () "\
+Switch to the last buffer in the buffer list."
   (interactive)
   (switch-to-buffer (last-buffer)))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]