emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/help-mode.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/help-mode.el [lexbind]
Date: Tue, 06 Jul 2004 07:11:29 -0400

Index: emacs/lisp/help-mode.el
diff -c emacs/lisp/help-mode.el:1.11.4.8 emacs/lisp/help-mode.el:1.11.4.9
*** emacs/lisp/help-mode.el:1.11.4.8    Sat May  1 23:46:15 2004
--- emacs/lisp/help-mode.el     Tue Jul  6 09:23:42 2004
***************
*** 577,588 ****
        (goto-char position)))))
  
  (defun help-go-back ()
!   "Invoke the [back] button (if any) in the Help mode buffer."
    (interactive)
!   (let ((back-button (button-at (1- (point-max)))))
!     (if back-button
!       (button-activate back-button)
!       (error "No [back] button"))))
  
  (defun help-do-xref (pos function args)
    "Call the help cross-reference function FUNCTION with args ARGS.
--- 577,587 ----
        (goto-char position)))))
  
  (defun help-go-back ()
!   "Go back to previous topic in this help buffer."
    (interactive)
!   (if help-xref-stack
!       (help-xref-go-back (current-buffer))
!     (error "No previous help buffer.")))
  
  (defun help-do-xref (pos function args)
    "Call the help cross-reference function FUNCTION with args ARGS.




reply via email to

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