diff options
| author | Stefan Monnier | 2011-03-31 00:24:03 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2011-03-31 00:24:03 -0400 |
| commit | 40d83b412f584cc02e68d4eac8fd5e6eb769e2fe (patch) | |
| tree | b56f27a7e6d75a8c1fd27b00179a27b5efea0a32 /doc | |
| parent | f488fb6528738131ef41859e1f04125f2e50efce (diff) | |
| parent | 44f230aa043ebb222aa0876b44d70484d5dd38db (diff) | |
| download | emacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.tar.gz emacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.zip | |
Merge from trunk
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/Makefile.in | 2 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog.trunk | 5 | ||||
| -rw-r--r-- | doc/lispref/commands.texi | 5 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/gnus.texi | 5 |
5 files changed, 18 insertions, 3 deletions
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in index ae142dba6e6..aca17ce817d 100644 --- a/doc/emacs/Makefile.in +++ b/doc/emacs/Makefile.in | |||
| @@ -111,7 +111,7 @@ EMACSSOURCES= \ | |||
| 111 | 111 | ||
| 112 | ## This seems pointless. The info/ directory exists in both the | 112 | ## This seems pointless. The info/ directory exists in both the |
| 113 | ## repository and the release tarfiles. We do not use any | 113 | ## repository and the release tarfiles. We do not use any |
| 114 | ## equivalent of mkdir -p/mkinstalldirs, so this is not a general | 114 | ## equivalent of mkdir -p/install-sh -d, so this is not a general |
| 115 | ## solution anyway. The second test -d is for parallel builds. | 115 | ## solution anyway. The second test -d is for parallel builds. |
| 116 | mkinfodir = @test -d ${infodir} || mkdir ${infodir} || test -d ${infodir} | 116 | mkinfodir = @test -d ${infodir} || mkdir ${infodir} || test -d ${infodir} |
| 117 | 117 | ||
diff --git a/doc/lispref/ChangeLog.trunk b/doc/lispref/ChangeLog.trunk index c705aae4934..1eb3cfa2556 100644 --- a/doc/lispref/ChangeLog.trunk +++ b/doc/lispref/ChangeLog.trunk | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * commands.texi (Command Overview): post-command-hook is not reset to | ||
| 4 | nil any more. | ||
| 5 | |||
| 1 | 2011-03-19 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2011-03-19 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * strings.texi (String Conversion): Don't mention | 8 | * strings.texi (String Conversion): Don't mention |
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi index 4f8d554a68b..eb42ddb11a4 100644 --- a/doc/lispref/commands.texi +++ b/doc/lispref/commands.texi | |||
| @@ -91,8 +91,9 @@ and also when the command loop is first entered. At that time, | |||
| 91 | 91 | ||
| 92 | Quitting is suppressed while running @code{pre-command-hook} and | 92 | Quitting is suppressed while running @code{pre-command-hook} and |
| 93 | @code{post-command-hook}. If an error happens while executing one of | 93 | @code{post-command-hook}. If an error happens while executing one of |
| 94 | these hooks, it terminates execution of the hook, and clears the hook | 94 | these hooks, it does not terminate execution of the hook; instead |
| 95 | variable to @code{nil} so as to prevent an infinite loop of errors. | 95 | the error is silenced and the function in which the error occurred |
| 96 | is removed from the hook. | ||
| 96 | 97 | ||
| 97 | A request coming into the Emacs server (@pxref{Emacs Server,,, | 98 | A request coming into the Emacs server (@pxref{Emacs Server,,, |
| 98 | emacs, The GNU Emacs Manual}) runs these two hooks just as a keyboard | 99 | emacs, The GNU Emacs Manual}) runs these two hooks just as a keyboard |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 50f0e4e45b9..1c29d2598a8 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-03-19 Antoine Levitt <antoine.levitt@gmail.com> | ||
| 2 | |||
| 3 | * gnus.texi (Listing Groups): Document gnus-group-list-ticked | ||
| 4 | |||
| 1 | 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com> | 5 | 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com> |
| 2 | 6 | ||
| 3 | * calc.texi (Logarithmic Units): Update the function names. | 7 | * calc.texi (Logarithmic Units): Update the function names. |
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index b55452cfa82..9771392f0cc 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -3320,6 +3320,11 @@ List all groups with cached articles (@code{gnus-group-list-cached}). | |||
| 3320 | @findex gnus-group-list-dormant | 3320 | @findex gnus-group-list-dormant |
| 3321 | List all groups with dormant articles (@code{gnus-group-list-dormant}). | 3321 | List all groups with dormant articles (@code{gnus-group-list-dormant}). |
| 3322 | 3322 | ||
| 3323 | @item A ! | ||
| 3324 | @kindex A ! (Group) | ||
| 3325 | @findex gnus-group-list-ticked | ||
| 3326 | List all groups with ticked articles (@code{gnus-group-list-ticked}). | ||
| 3327 | |||
| 3323 | @item A / | 3328 | @item A / |
| 3324 | @kindex A / (Group) | 3329 | @kindex A / (Group) |
| 3325 | @findex gnus-group-list-limit | 3330 | @findex gnus-group-list-limit |