aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorKenichi Handa2010-08-06 12:54:13 +0900
committerKenichi Handa2010-08-06 12:54:13 +0900
commitfaa28da9b740a4b5f297fc215d79a66d71bf6f78 (patch)
tree6d7cdbf92c424aeff5ffa9444b7baf75a90ab2be /doc
parent6b4d96c2f04e5a08c4f9fff144743ff16c151dae (diff)
parent9ebc731b45fea0b4d7d547cb37ca2675d5940106 (diff)
downloademacs-faa28da9b740a4b5f297fc215d79a66d71bf6f78.tar.gz
emacs-faa28da9b740a4b5f297fc215d79a66d71bf6f78.zip
merge trunk
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
-rw-r--r--doc/misc/org.texi4
6 files changed, 29 insertions, 10 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 7acfeccea04..4559864c23f 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,17 @@
12010-08-02 Christoph <cschol2112@googlemail.com>
2
3 * control.texi (Handling Errors) <error-message-string>: Fix arg name.
4
52010-07-29 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-07-28 Juanma Barranquero <lekktu@gmail.com>
11
12 * minibuf.texi (High-Level Completion): Document args of
13 `read-buffer-function' (bug#5625).
14
12010-07-27 Juanma Barranquero <lekktu@gmail.com> 152010-07-27 Juanma Barranquero <lekktu@gmail.com>
2 16
3 * modes.texi (Defining Minor Modes): Use C-delete in examples, 17 * modes.texi (Defining Minor Modes): Use C-delete in examples,
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 72dc8097760..49abc7af2cf 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12010-08-01 Juanma Barranquero <lekktu@gmail.com>
2
3 * org.texi (Footnotes, Tables in HTML export): Fix typos.
4
12010-07-23 Chong Yidong <cyd@stupidchicken.com> 52010-07-23 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * nxml-mode.texi (Limitations): Remove obsolete discussion (Bug#6708). 7 * nxml-mode.texi (Limitations): Remove obsolete discussion (Bug#6708).
diff --git a/doc/misc/org.texi b/doc/misc/org.texi
index f31d852ea10..d4857d7a61c 100644
--- a/doc/misc/org.texi
+++ b/doc/misc/org.texi
@@ -1437,7 +1437,7 @@ LaTeX}). Here are the valid references:
1437@table @code 1437@table @code
1438@item [1] 1438@item [1]
1439A plain numeric footnote marker. Compatible with @file{footnote.el}, but not 1439A plain numeric footnote marker. Compatible with @file{footnote.el}, but not
1440recommended because somthing like @samp{[1]} could easily be part of a code 1440recommended because something like @samp{[1]} could easily be part of a code
1441snippet. 1441snippet.
1442@item [fn:name] 1442@item [fn:name]
1443A named footnote reference, where @code{name} is a unique label word, or, for 1443A named footnote reference, where @code{name} is a unique label word, or, for
@@ -9165,7 +9165,7 @@ and @code{style} attributes for a link:
9165Org-mode tables are exported to HTML using the table tag defined in 9165Org-mode tables are exported to HTML using the table tag defined in
9166@code{org-export-html-table-tag}. The default setting makes tables without 9166@code{org-export-html-table-tag}. The default setting makes tables without
9167cell borders and frame. If you would like to change this for individual 9167cell borders and frame. If you would like to change this for individual
9168tables, place somthing like the following before the table: 9168tables, place something like the following before the table:
9169 9169
9170@cindex #+CAPTION 9170@cindex #+CAPTION
9171@cindex #+ATTR_HTML 9171@cindex #+ATTR_HTML