aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorChong Yidong2010-08-08 17:15:44 -0400
committerChong Yidong2010-08-08 17:15:44 -0400
commitcc36ae609d01e7922c662c78866300d57b34b07e (patch)
tree2fc2af92520d09b2fb9cf4014187496cf35793df /doc
parent675e2c697bc8a0ff827fcb33297f63f4cc7ecad3 (diff)
parent7815fe1985833c57457882b415a29358991dabdc (diff)
downloademacs-cc36ae609d01e7922c662c78866300d57b34b07e.tar.gz
emacs-cc36ae609d01e7922c662c78866300d57b34b07e.zip
Merge changes from emacs-23 branch.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog14
-rw-r--r--doc/lispref/control.texi2
-rw-r--r--doc/lispref/minibuf.texi9
-rw-r--r--doc/lispref/modes.texi6
-rw-r--r--doc/misc/ChangeLog4
5 files changed, 27 insertions, 8 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index f5c66806764..fe64ca9d835 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,17 @@
12010-08-08 Christoph <cschol2112@googlemail.com>
2
3 * control.texi (Handling Errors) <error-message-string>: Fix arg name.
4
52010-08-08 Juanma Barranquero <lekktu@gmail.com>
6
7 * modes.texi (Defining Minor Modes): Use C-backspace, not C-delete.
8 Suggested by Štěpán Němec <stepnem@gmail.com>.
9
102010-08-08 Juanma Barranquero <lekktu@gmail.com>
11
12 * minibuf.texi (High-Level Completion): Document args of
13 `read-buffer-function' (bug#5625).
14
12010-07-29 Jan Djärv <jan.h.d@swipnet.se> 152010-07-29 Jan Djärv <jan.h.d@swipnet.se>
2 16
3 * frames.texi (Layout Parameters): Add doc for tool-bar-position. 17 * frames.texi (Layout Parameters): Add doc for tool-bar-position.
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index 1c4447e9eb5..16564677f32 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -1039,7 +1039,7 @@ to @code{condition-case} whose error condition you want to re-throw.
1039@xref{Definition of signal}. 1039@xref{Definition of signal}.
1040@end defspec 1040@end defspec
1041 1041
1042@defun error-message-string error-description 1042@defun error-message-string error-descriptor
1043This function returns the error message string for a given error 1043This function returns the error message string for a given error
1044descriptor. It is useful if you want to handle an error by printing the 1044descriptor. It is useful if you want to handle an error by printing the
1045usual error message for that error. @xref{Definition of signal}. 1045usual error message for that error. @xref{Definition of signal}.
diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi
index 3588704b054..9bc6be432ae 100644
--- a/doc/lispref/minibuf.texi
+++ b/doc/lispref/minibuf.texi
@@ -1222,10 +1222,11 @@ Buffer name (default foo): @point{}
1222@end defun 1222@end defun
1223 1223
1224@defopt read-buffer-function 1224@defopt read-buffer-function
1225This variable specifies how to read buffer names. For example, if you 1225This variable specifies how to read buffer names. The function is
1226set this variable to @code{iswitchb-read-buffer}, all Emacs commands 1226called with the arguments passed to @code{read-buffer}. For example,
1227that call @code{read-buffer} to read a buffer name will actually use the 1227if you set this variable to @code{iswitchb-read-buffer}, all Emacs
1228@code{iswitchb} package to read it. 1228commands that call @code{read-buffer} to read a buffer name will
1229actually use the @code{iswitchb} package to read it.
1229@end defopt 1230@end defopt
1230 1231
1231@defopt read-buffer-completion-ignore-case 1232@defopt read-buffer-completion-ignore-case
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index c095a9e195d..3953da59b93 100644
--- a/doc/lispref/modes.texi
+++ b/doc/lispref/modes.texi
@@ -1494,7 +1494,7 @@ See the command \\[hungry-electric-delete]."
1494 ;; The indicator for the mode line. 1494 ;; The indicator for the mode line.
1495 " Hungry" 1495 " Hungry"
1496 ;; The minor mode bindings. 1496 ;; The minor mode bindings.
1497 '(([C-delete] . hungry-electric-delete)) 1497 '(([C-backspace] . hungry-electric-delete))
1498 :group 'hunger) 1498 :group 'hunger)
1499@end smallexample 1499@end smallexample
1500 1500
@@ -1526,8 +1526,8 @@ See the command \\[hungry-electric-delete]."
1526 :lighter " Hungry" 1526 :lighter " Hungry"
1527 ;; The minor mode bindings. 1527 ;; The minor mode bindings.
1528 :keymap 1528 :keymap
1529 '(([C-delete] . hungry-electric-delete) 1529 '(([C-backspace] . hungry-electric-delete)
1530 ([C-M-delete] 1530 ([C-M-backspace]
1531 . (lambda () 1531 . (lambda ()
1532 (interactive) 1532 (interactive)
1533 (hungry-electric-delete t)))) 1533 (hungry-electric-delete t))))
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 566fab45fbf..56dd6336108 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12010-08-08 Juanma Barranquero <lekktu@gmail.com>
2
3 * org.texi (Footnotes, Tables in HTML export): Fix typos.
4
12010-08-08 Jay Belanger <jay.p.belanger@gmail.com> 52010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
2 6
3 * calc.texi (Making Selections, Selecting Subformulas) 7 * calc.texi (Making Selections, Selecting Subformulas)