From: Jay Belanger Date: Fri, 27 May 2005 21:45:14 +0000 (+0000) Subject: (calc-info-goto-node): Use info instead of Info-goto-node. X-Git-Tag: emacs-pretest-22.0.90~9473 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1565a620708ff16527b2588b89ce1329f907b447;p=emacs.git (calc-info-goto-node): Use info instead of Info-goto-node. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2bbd2b010a9..012a24301ee 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-05-27 Jay Belanger + + * calc/calc-misc.el (calc-info-goto-node): Use info instead of + Info-goto-node. + 2005-05-28 Nick Roberts * progmodes/gdb-ui.el (gdb-all-registers): New variable. diff --git a/lisp/calc/calc-misc.el b/lisp/calc/calc-misc.el index e8bdfe2fa5a..ce0da11ecaa 100644 --- a/lisp/calc/calc-misc.el +++ b/lisp/calc/calc-misc.el @@ -160,7 +160,7 @@ Calc user interface as before (either M-# C or M-# K; initially M-# C)." "Go to a node in the Calculator info documentation." (interactive) (select-window (get-largest-window)) - (Info-goto-node (concat "(Calc)" node))) + (info (concat "(Calc)" node))) (defun calc-tutorial () "Run the Emacs Info system on the Calculator Tutorial."