diff options
| author | Joakim Verona | 2013-09-11 16:17:49 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-09-11 16:17:49 +0200 |
| commit | e9d8fea04e2d22ba8c6b238444f04d654492fa76 (patch) | |
| tree | 5cc927f1780543c5848c88af7896703e404df0b0 | |
| parent | 6070fc71f3af2a40bc3402ac387665fa713fa8e5 (diff) | |
| parent | 412a09723c5cf5f8b8a28fc0ef104750de3a6d7f (diff) | |
| download | emacs-e9d8fea04e2d22ba8c6b238444f04d654492fa76.tar.gz emacs-e9d8fea04e2d22ba8c6b238444f04d654492fa76.zip | |
merge from trunk
| -rw-r--r-- | doc/emacs/trouble.texi | 1 | ||||
| -rw-r--r-- | doc/lispref/nonascii.texi | 2 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 6 | ||||
| -rw-r--r-- | doc/misc/ido.texi | 3 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/termhooks.h | 7 |
6 files changed, 17 insertions, 7 deletions
diff --git a/doc/emacs/trouble.texi b/doc/emacs/trouble.texi index 0d5ce6820c7..34783796899 100644 --- a/doc/emacs/trouble.texi +++ b/doc/emacs/trouble.texi | |||
| @@ -1140,6 +1140,7 @@ Please help us keep up with the workload by designing the patch in a | |||
| 1140 | form that is clearly safe to install. | 1140 | form that is clearly safe to install. |
| 1141 | @end itemize | 1141 | @end itemize |
| 1142 | 1142 | ||
| 1143 | @c FIXME: Include the node above? | ||
| 1143 | @node Contributing | 1144 | @node Contributing |
| 1144 | @section Contributing to Emacs Development | 1145 | @section Contributing to Emacs Development |
| 1145 | @cindex contributing to Emacs | 1146 | @cindex contributing to Emacs |
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index f351829e4cf..ec949b37684 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi | |||
| @@ -549,6 +549,8 @@ is @code{nil}, which means the character itself. | |||
| 549 | @defun get-char-code-property char propname | 549 | @defun get-char-code-property char propname |
| 550 | This function returns the value of @var{char}'s @var{propname} property. | 550 | This function returns the value of @var{char}'s @var{propname} property. |
| 551 | 551 | ||
| 552 | @c FIXME: Use ā?\sā instead of ā? ā for the space character in the | ||
| 553 | @c first example? --xfq | ||
| 552 | @example | 554 | @example |
| 553 | @group | 555 | @group |
| 554 | (get-char-code-property ? 'general-category) | 556 | (get-char-code-property ? 'general-category) |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index e3ad5688f22..aa1e69891a2 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-09-11 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * ido.texi (Interactive Substring Matching): Use @key{RET} instead | ||
| 4 | of @kbd{RET}. | ||
| 5 | (Prefix Matching): Add an index. | ||
| 6 | |||
| 1 | 2013-09-08 Glenn Morris <rgm@gnu.org> | 7 | 2013-09-08 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * emacs-gnutls.texi: Tweak direntry. | 9 | * emacs-gnutls.texi: Tweak direntry. |
diff --git a/doc/misc/ido.texi b/doc/misc/ido.texi index 623fb4bfa79..64885179259 100644 --- a/doc/misc/ido.texi +++ b/doc/misc/ido.texi | |||
| @@ -258,7 +258,7 @@ Buffer: 23@{123456 | 123@} | |||
| 258 | At this point, you still have two matching buffers. If you want the | 258 | At this point, you still have two matching buffers. If you want the |
| 259 | first buffer in the list, you can simply press @key{RET}. If you want | 259 | first buffer in the list, you can simply press @key{RET}. If you want |
| 260 | the second in the list, you can press @kbd{C-s} to move it to the top | 260 | the second in the list, you can press @kbd{C-s} to move it to the top |
| 261 | of the list and then press @kbd{RET} to select it. | 261 | of the list and then press @key{RET} to select it. |
| 262 | 262 | ||
| 263 | However, if you type @kbd{4}, you'll only have one match left: | 263 | However, if you type @kbd{4}, you'll only have one match left: |
| 264 | 264 | ||
| @@ -366,6 +366,7 @@ users Ido offers in addition to the default substring matching method | |||
| 366 | the only difference to the description of the substring matching | 366 | the only difference to the description of the substring matching |
| 367 | above. | 367 | above. |
| 368 | 368 | ||
| 369 | @cindex toggle prefix matching | ||
| 369 | You can toggle prefix matching with @kbd{C-p} | 370 | You can toggle prefix matching with @kbd{C-p} |
| 370 | (@code{ido-toggle-prefix}). | 371 | (@code{ido-toggle-prefix}). |
| 371 | 372 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index 41e20465d57..dda202af89f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2013-09-11 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2013-09-11 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 2 | ||
| 3 | * termhooks.h (fullscreen_hook): Remove the leftover. | ||
| 4 | (struct terminal): Fix typo in comment. | ||
| 5 | |||
| 6 | 2013-09-11 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 7 | |||
| 3 | Cleaning up a few X scroll bar bits. | 8 | Cleaning up a few X scroll bar bits. |
| 4 | * termhooks.h (enum scroll_bar_part): Add scroll_bar_nowhere member. | 9 | * termhooks.h (enum scroll_bar_part): Add scroll_bar_nowhere member. |
| 5 | * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS && USE_LUCID]: | 10 | * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS && USE_LUCID]: |
diff --git a/src/termhooks.h b/src/termhooks.h index 3f9ccdcb1d6..1efdc7222cb 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -43,11 +43,6 @@ enum scroll_bar_part { | |||
| 43 | scroll_bar_move_ratio | 43 | scroll_bar_move_ratio |
| 44 | }; | 44 | }; |
| 45 | 45 | ||
| 46 | /* If the value of the frame parameter changed, whis hook is called. | ||
| 47 | For example, if going from fullscreen to not fullscreen this hook | ||
| 48 | may do something OS dependent, like extended window manager hints on X11. */ | ||
| 49 | extern void (*fullscreen_hook) (struct frame *f); | ||
| 50 | |||
| 51 | /* Output method of a terminal (and frames on this terminal, respectively). */ | 46 | /* Output method of a terminal (and frames on this terminal, respectively). */ |
| 52 | 47 | ||
| 53 | enum output_method | 48 | enum output_method |
| @@ -502,7 +497,7 @@ struct terminal | |||
| 502 | windows. */ | 497 | windows. */ |
| 503 | void (*frame_raise_lower_hook) (struct frame *f, int raise_flag); | 498 | void (*frame_raise_lower_hook) (struct frame *f, int raise_flag); |
| 504 | 499 | ||
| 505 | /* If the value of the frame parameter changed, whis hook is called. | 500 | /* If the value of the frame parameter changed, this hook is called. |
| 506 | For example, if going from fullscreen to not fullscreen this hook | 501 | For example, if going from fullscreen to not fullscreen this hook |
| 507 | may do something OS dependent, like extended window manager hints on X11. */ | 502 | may do something OS dependent, like extended window manager hints on X11. */ |
| 508 | void (*fullscreen_hook) (struct frame *f); | 503 | void (*fullscreen_hook) (struct frame *f); |