diff options
| author | Tom Tromey | 2013-07-12 18:44:13 -0600 |
|---|---|---|
| committer | Tom Tromey | 2013-07-12 18:44:13 -0600 |
| commit | b34a529f177a6ea32da5cb1254f91bf9d71838db (patch) | |
| tree | 477131abc15d3107b30b635223d87a22550b480b /doc | |
| parent | e6f63071a3f7721f55220514b6d9a8ee8c1232d8 (diff) | |
| parent | 5e301d7651c0691bb2bc7f3fbe711fdbe26ac471 (diff) | |
| download | emacs-b34a529f177a6ea32da5cb1254f91bf9d71838db.tar.gz emacs-b34a529f177a6ea32da5cb1254f91bf9d71838db.zip | |
Merge from trunk
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/text.texi | 12 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 21 | ||||
| -rw-r--r-- | doc/misc/gnus-faq.texi | 7 | ||||
| -rw-r--r-- | doc/misc/gnus.texi | 26 |
5 files changed, 55 insertions, 16 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index e4bc6eb5bcc..f8b7406c427 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-07-10 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Timestamp fixes for undo (Bug#14824). | ||
| 4 | * text.texi (Undo): Document (t . 0) and (t . -1) in buffer-undo-list. | ||
| 5 | |||
| 1 | 2013-07-06 Eli Zaretskii <eliz@gnu.org> | 6 | 2013-07-06 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * nonascii.texi (Text Representations): Document that | 8 | * nonascii.texi (Text Representations): Document that |
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index c10458b39ae..7cace70ad07 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi | |||
| @@ -1250,14 +1250,18 @@ reinsert it is @code{(abs @var{position})}. If @var{position} is | |||
| 1250 | positive, point was at the beginning of the deleted text, otherwise it | 1250 | positive, point was at the beginning of the deleted text, otherwise it |
| 1251 | was at the end. | 1251 | was at the end. |
| 1252 | 1252 | ||
| 1253 | @item (t @var{sec-high} @var{sec-low} @var{microsec} @var{picosec}) | 1253 | @item (t . @var{time-flag}) |
| 1254 | This kind of element indicates that an unmodified buffer became | 1254 | This kind of element indicates that an unmodified buffer became |
| 1255 | modified. The list @code{(@var{sec-high} @var{sec-low} @var{microsec} | 1255 | modified. A @var{time-flag} of the form |
| 1256 | @code{(@var{sec-high} @var{sec-low} @var{microsec} | ||
| 1256 | @var{picosec})} represents the visited file's modification time as of | 1257 | @var{picosec})} represents the visited file's modification time as of |
| 1257 | when it was previously visited or saved, using the same format as | 1258 | when it was previously visited or saved, using the same format as |
| 1258 | @code{current-time}; see @ref{Time of Day}. @code{primitive-undo} uses those | 1259 | @code{current-time}; see @ref{Time of Day}. |
| 1260 | A @var{time-flag} of 0 means the buffer does not correspond to any file; | ||
| 1261 | @minus{}1 means the visited file previously did not exist. | ||
| 1262 | @code{primitive-undo} uses these | ||
| 1259 | values to determine whether to mark the buffer as unmodified once again; | 1263 | values to determine whether to mark the buffer as unmodified once again; |
| 1260 | it does so only if the file's modification time matches those numbers. | 1264 | it does so only if the file's status matches that of @var{time-flag}. |
| 1261 | 1265 | ||
| 1262 | @item (nil @var{property} @var{value} @var{beg} . @var{end}) | 1266 | @item (nil @var{property} @var{value} @var{beg} . @var{end}) |
| 1263 | This kind of element records a change in a text property. | 1267 | This kind of element records a change in a text property. |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index e4a66e19877..2fe1914f926 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2013-07-08 Tassilo Horn <tsdh@gnu.org> | ||
| 2 | |||
| 3 | * gnus.texi (lines): Correct description of | ||
| 4 | `gnus-registry-track-extra's default value. Mention | ||
| 5 | `gnus-registry-remove-extra-data'. | ||
| 6 | |||
| 7 | 2013-07-06 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 8 | |||
| 9 | * gnus.texi (Group Parameters): Mention regexp | ||
| 10 | substitutions (bug#11688). | ||
| 11 | |||
| 12 | 2013-07-06 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change) | ||
| 13 | |||
| 14 | * gnus.texi (Generic Marking Commands): Fix grammar (bug#13368). | ||
| 15 | |||
| 16 | 2013-07-06 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 17 | |||
| 18 | * gnus.texi (Emacsen): Fix version. | ||
| 19 | |||
| 20 | * gnus-faq.texi (FAQ 1-6): Mention the correct Emacs version. | ||
| 21 | |||
| 1 | 2013-07-06 Glenn Morris <rgm@gnu.org> | 22 | 2013-07-06 Glenn Morris <rgm@gnu.org> |
| 2 | 23 | ||
| 3 | * mh-e.texi: Fix external links. | 24 | * mh-e.texi: Fix external links. |
diff --git a/doc/misc/gnus-faq.texi b/doc/misc/gnus-faq.texi index ff29647d166..1a0469c14f4 100644 --- a/doc/misc/gnus-faq.texi +++ b/doc/misc/gnus-faq.texi | |||
| @@ -222,10 +222,9 @@ Which version of Emacs do I need? | |||
| 222 | 222 | ||
| 223 | @subsubheading Answer | 223 | @subsubheading Answer |
| 224 | 224 | ||
| 225 | Gnus 5.10 requires an Emacs version that is greater than or equal | 225 | Gnus 5.13 requires an Emacs version that is greater than or equal |
| 226 | to Emacs 20.7 or XEmacs 21.1. | 226 | to Emacs 23.1 or XEmacs 21.1, although there are some features that |
| 227 | The development versions of Gnus (aka No Gnus) requires Emacs 21 | 227 | only work on Emacs 24. |
| 228 | or XEmacs 21.4. | ||
| 229 | 228 | ||
| 230 | @node FAQ 1-7 | 229 | @node FAQ 1-7 |
| 231 | @subsubheading Question 1.7 | 230 | @subsubheading Question 1.7 |
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index 3d4bd378869..e5ba2c19eec 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -3091,6 +3091,12 @@ if address "sender" ["name@@one.org", "else@@two.org"] @{ | |||
| 3091 | @} | 3091 | @} |
| 3092 | @end example | 3092 | @end example |
| 3093 | 3093 | ||
| 3094 | You can also use regexp expansions in the rules: | ||
| 3095 | |||
| 3096 | @example | ||
| 3097 | (sieve header :regex "list-id" "<c++std-\\1.accu.org>") | ||
| 3098 | @end example | ||
| 3099 | |||
| 3094 | See @pxref{Sieve Commands} for commands and variables that might be of | 3100 | See @pxref{Sieve Commands} for commands and variables that might be of |
| 3095 | interest in relation to the sieve parameter. | 3101 | interest in relation to the sieve parameter. |
| 3096 | 3102 | ||
| @@ -6380,10 +6386,10 @@ The default is @code{t}. | |||
| 6380 | @node Generic Marking Commands | 6386 | @node Generic Marking Commands |
| 6381 | @subsection Generic Marking Commands | 6387 | @subsection Generic Marking Commands |
| 6382 | 6388 | ||
| 6383 | Some people would like the command that ticks an article (@kbd{!}) go to | 6389 | Some people would like the command that ticks an article (@kbd{!}) to |
| 6384 | the next article. Others would like it to go to the next unread | 6390 | go to the next article. Others would like it to go to the next unread |
| 6385 | article. Yet others would like it to stay on the current article. And | 6391 | article. Yet others would like it to stay on the current article. |
| 6386 | even though I haven't heard of anybody wanting it to go to the | 6392 | And even though I haven't heard of anybody wanting it to go to the |
| 6387 | previous (unread) article, I'm sure there are people that want that as | 6393 | previous (unread) article, I'm sure there are people that want that as |
| 6388 | well. | 6394 | well. |
| 6389 | 6395 | ||
| @@ -26000,9 +26006,13 @@ following variables. | |||
| 26000 | 26006 | ||
| 26001 | @defvar gnus-registry-track-extra | 26007 | @defvar gnus-registry-track-extra |
| 26002 | This is a list of symbols, so it's best to change it from the | 26008 | This is a list of symbols, so it's best to change it from the |
| 26003 | Customize interface. By default it's @code{(subject sender)}, which | 26009 | Customize interface. By default it's @code{(subject sender recipient)}, |
| 26004 | may work for you. It can be annoying if your mail flow is large and | 26010 | which may work for you. It can be annoying if your mail flow is large |
| 26005 | people don't stick to the same groups. | 26011 | and people don't stick to the same groups. |
| 26012 | |||
| 26013 | When you decide to stop tracking any of those extra data, you can use | ||
| 26014 | the command @code{gnus-registry-remove-extra-data} to purge it from | ||
| 26015 | the existing registry entries. | ||
| 26006 | @end defvar | 26016 | @end defvar |
| 26007 | 26017 | ||
| 26008 | @defvar gnus-registry-split-strategy | 26018 | @defvar gnus-registry-split-strategy |
| @@ -26575,7 +26585,7 @@ This version of Gnus should work on: | |||
| 26575 | @itemize @bullet | 26585 | @itemize @bullet |
| 26576 | 26586 | ||
| 26577 | @item | 26587 | @item |
| 26578 | Emacs 21.1 and up. | 26588 | Emacs 23.1 and up. |
| 26579 | 26589 | ||
| 26580 | @item | 26590 | @item |
| 26581 | XEmacs 21.4 and up. | 26591 | XEmacs 21.4 and up. |