aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-08-09 02:52:39 +0000
committerRichard M. Stallman2005-08-09 02:52:39 +0000
commitd3c1cf729fa76099983df6dd72734a08f9692535 (patch)
treed63007280de2de2f543521177cdb900a5e8fe315
parent0bf41002b4961675f3947920fef1de09e151a46a (diff)
downloademacs-d3c1cf729fa76099983df6dd72734a08f9692535.tar.gz
emacs-d3c1cf729fa76099983df6dd72734a08f9692535.zip
(Info-insert-dir): Use insert-buffer-substring.
-rw-r--r--lisp/info.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el
index b97ad624d2d..4fdae4b6321 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -1028,7 +1028,7 @@ a case-insensitive match is tried."
1028 ;; Insert the entire original dir file as a start; note that we've 1028 ;; Insert the entire original dir file as a start; note that we've
1029 ;; already saved its default directory to use as the default 1029 ;; already saved its default directory to use as the default
1030 ;; directory for the whole concatenation. 1030 ;; directory for the whole concatenation.
1031 (insert-buffer buffer) 1031 (insert-buffer-substring buffer)
1032 1032
1033 ;; Look at each of the other buffers one by one. 1033 ;; Look at each of the other buffers one by one.
1034 (dolist (other others) 1034 (dolist (other others)