aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog23
-rw-r--r--lisp/textmodes/org.el4
2 files changed, 24 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6985c85107b..a3c63fba027 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,26 @@
12008-02-28 Glenn Morris <rgm@gnu.org>
2
3 * autoinsert.el (auto-insert-alist): Update to FDL 1.2.
4
5 * emacs-lisp/byte-run.el (make-obsolete): Doc fix.
6
7 * mail/emacsbug.el: Remove leading `*' from defcustom doc-strings.
8 (Info-menu, Info-goto-node): Remove declarations.
9 (report-emacs-bug-info): Use info rather than Info-goto-node.
10
11 * progmodes/idlwave.el (Info-goto-node): Remove declaration.
12 (idlwave-convert-xml-system-routine-info): Don't require xml.
13 (idlwave-show-commentary, idlwave-shell-show-commentary):
14 Don't require finder.
15 (idlwave-info): Don't require info. Use info rather than
16 Info-goto-node.
17
18 * textmodes/org.el (Info-goto-node): Remove declaration.
19 (org-info): Use info rather than Info-goto-node.
20
21 * textmodes/reftex.el (reftex-show-commentary): Don't require finder.
22 (reftex-info): Don't require info. Use info rather than Info-goto-node.
23
12008-02-28 Dan Nicolaescu <dann@ics.uci.edu> 242008-02-28 Dan Nicolaescu <dann@ics.uci.edu>
2 25
3 * progmodes/hideshow.el (hs-minor-mode-menu): Add some options to 26 * progmodes/hideshow.el (hs-minor-mode-menu): Add some options to
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index bc63a962b9c..98a2c668e51 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -4105,7 +4105,6 @@ If it is less than 8, the level-1 face gets re-used for level N+1 etc."
4105 (date string specifier &optional marker globcolor literal)) 4105 (date string specifier &optional marker globcolor literal))
4106(declare-function table--at-cell-p "table" (position &optional object at-column)) 4106(declare-function table--at-cell-p "table" (position &optional object at-column))
4107(declare-function Info-find-node "info" (filename nodename &optional no-going-back)) 4107(declare-function Info-find-node "info" (filename nodename &optional no-going-back))
4108(declare-function Info-goto-node "info" (nodename &optional fork))
4109(declare-function bbdb "ext:bbdb-com" (string elidep)) 4108(declare-function bbdb "ext:bbdb-com" (string elidep))
4110(declare-function bbdb-company "ext:bbdb-com" (string elidep)) 4109(declare-function bbdb-company "ext:bbdb-com" (string elidep))
4111(declare-function bbdb-current-record "ext:bbdb-com" (&optional planning-on-modifying)) 4110(declare-function bbdb-current-record "ext:bbdb-com" (&optional planning-on-modifying))
@@ -26976,8 +26975,7 @@ See the individual commands for more information."
26976 "Read documentation for Org-mode in the info system. 26975 "Read documentation for Org-mode in the info system.
26977With optional NODE, go directly to that node." 26976With optional NODE, go directly to that node."
26978 (interactive) 26977 (interactive)
26979 (require 'info) 26978 (info (format "(org)%s" (or node ""))))
26980 (Info-goto-node (format "(org)%s" (or node ""))))
26981 26979
26982(defun org-install-agenda-files-menu () 26980(defun org-install-agenda-files-menu ()
26983 (let ((bl (buffer-list))) 26981 (let ((bl (buffer-list)))