aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/info.el1
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b643a48b789..833bf120a10 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12001-11-12 Richard M. Stallman <rms@gnu.org>
2
3 * simple.el (clone-indirect-buffer): Error if major mode symbol
4 has a no-clone-indirect property.
5 (clone-buffer): Check for obvious errors before reading clone name.
6
7 * info.el (Info-mode): Add a no-clone-indirect property.
8
12001-11-12 Sam Steingold <sds@gnu.org> 92001-11-12 Sam Steingold <sds@gnu.org>
2 10
3 * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and 11 * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and
diff --git a/lisp/info.el b/lisp/info.el
index 3f47bc0de4c..58e1b0b9f89 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -2230,6 +2230,7 @@ The name of the info file is prepended to the node name in parentheses."
2230 2230
2231;; Info mode is suitable only for specially formatted data. 2231;; Info mode is suitable only for specially formatted data.
2232(put 'Info-mode 'mode-class 'special) 2232(put 'Info-mode 'mode-class 'special)
2233(put 'Info-mode 'no-clone-indirect t)
2233 2234
2234(defun Info-mode () 2235(defun Info-mode ()
2235 "Info mode provides commands for browsing through the Info documentation tree. 2236 "Info mode provides commands for browsing through the Info documentation tree.