diff options
Diffstat (limited to 'man')
| -rw-r--r-- | man/ChangeLog | 15 | ||||
| -rw-r--r-- | man/frames.texi | 6 | ||||
| -rw-r--r-- | man/gnus.texi | 2 | ||||
| -rw-r--r-- | man/msdog.texi | 31 |
4 files changed, 50 insertions, 4 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index b7ac61c07b4..b4f9a2ee48c 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,18 @@ | |||
| 1 | 2007-01-29 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * frames.texi (Secondary Selection): Window clicked does not matter | ||
| 4 | when mouse-yank-at-point is non-nil. | ||
| 5 | |||
| 6 | 2007-01-28 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> | ||
| 7 | |||
| 8 | * gnus.texi (Batching Agents): Fix example. Reported by Tassilo Horn | ||
| 9 | <tassilo@member.fsf.org>. | ||
| 10 | |||
| 11 | 2007-01-27 Eli Zaretskii <eliz@gnu.org> | ||
| 12 | |||
| 13 | * msdog.texi (ls in Lisp): Document ls-lisp-format-time-list and | ||
| 14 | ls-lisp-use-localized-time-format. | ||
| 15 | |||
| 1 | 2007-01-20 Markus Triska <markus.triska@gmx.at> | 16 | 2007-01-20 Markus Triska <markus.triska@gmx.at> |
| 2 | 17 | ||
| 3 | * flymake.texi (Flymake mode): find-file-hook instead of ...-hooks. | 18 | * flymake.texi (Flymake mode): find-file-hook instead of ...-hooks. |
diff --git a/man/frames.texi b/man/frames.texi index d315a61aedb..965ccb0a7b0 100644 --- a/man/frames.texi +++ b/man/frames.texi | |||
| @@ -307,9 +307,9 @@ yanked text. | |||
| 307 | Double or triple clicking of @kbd{M-Mouse-1} operates on words and | 307 | Double or triple clicking of @kbd{M-Mouse-1} operates on words and |
| 308 | lines, much like @kbd{Mouse-1}. | 308 | lines, much like @kbd{Mouse-1}. |
| 309 | 309 | ||
| 310 | If @code{mouse-yank-at-point} is non-@code{nil}, @kbd{M-Mouse-2} | 310 | If @code{mouse-yank-at-point} is non-@code{nil}, @kbd{M-Mouse-2} yanks |
| 311 | yanks at point. Then it does not matter precisely where you click; all | 311 | at point. Then it does not matter precisely where you click, or even |
| 312 | that matters is which window you click on. @xref{Mouse Commands}. | 312 | which of the frame's windows you click on. @xref{Mouse Commands}. |
| 313 | 313 | ||
| 314 | @node Clipboard | 314 | @node Clipboard |
| 315 | @subsection Using the Clipboard | 315 | @subsection Using the Clipboard |
diff --git a/man/gnus.texi b/man/gnus.texi index 80a9e47c74b..625549890ae 100644 --- a/man/gnus.texi +++ b/man/gnus.texi | |||
| @@ -19040,7 +19040,7 @@ following incantation: | |||
| 19040 | 19040 | ||
| 19041 | @example | 19041 | @example |
| 19042 | #!/bin/sh | 19042 | #!/bin/sh |
| 19043 | emacs -batch -l ~/.emacs -l ~/.gnus.el gnus-agent-batch >/dev/null 2>&1 | 19043 | emacs -batch -l ~/.emacs -l ~/.gnus.el -f gnus-agent-batch >/dev/null 2>&1 |
| 19044 | @end example | 19044 | @end example |
| 19045 | 19045 | ||
| 19046 | 19046 | ||
diff --git a/man/msdog.texi b/man/msdog.texi index 47a15cfc019..0ed15229b7c 100644 --- a/man/msdog.texi +++ b/man/msdog.texi | |||
| @@ -280,6 +280,37 @@ restart Emacs, since @file{ls-lisp.el} is preloaded. | |||
| 280 | file-name patterns are supported: if it is non-@code{nil} (the | 280 | file-name patterns are supported: if it is non-@code{nil} (the |
| 281 | default), they are treated as shell-style wildcards; otherwise they | 281 | default), they are treated as shell-style wildcards; otherwise they |
| 282 | are treated as Emacs regular expressions. | 282 | are treated as Emacs regular expressions. |
| 283 | |||
| 284 | @vindex ls-lisp-format-time-list | ||
| 285 | The variable @code{ls-lisp-format-time-list} defines how to format | ||
| 286 | the date and time of files. @emph{The value of this variable is | ||
| 287 | ignored}, unless Emacs cannot determine the current locale. (However, | ||
| 288 | if the value of @code{ls-lisp-use-localized-time-format} is | ||
| 289 | non-@code{nil}, Emacs obeys @code{ls-lisp-format-time-list} even if | ||
| 290 | the current locale is available; see below.) | ||
| 291 | |||
| 292 | The value of @code{ls-lisp-format-time-list} is a list of 2 strings. | ||
| 293 | The first string is used if the file was modified within the current | ||
| 294 | year, while the second string is used for older files. In each of | ||
| 295 | these two strings you can use @samp{%}-sequences to substitute parts | ||
| 296 | of the time. For example: | ||
| 297 | @lisp | ||
| 298 | ("%b %e %H:%M" "%b %e %Y") | ||
| 299 | @end lisp | ||
| 300 | |||
| 301 | @noindent | ||
| 302 | Note that the strings substituted for these @samp{%}-sequences depend | ||
| 303 | on the current locale. @xref{Time Parsing,,, elisp, The Emacs Lisp | ||
| 304 | Reference Manual}, for more about format time specs. | ||
| 305 | |||
| 306 | @vindex ls-lisp-use-localized-time-format | ||
| 307 | Normally, Emacs formats the file time stamps in either traditional | ||
| 308 | or ISO-style time format. However, if the value of the variable | ||
| 309 | @code{ls-lisp-use-localized-time-format} is non-@code{nil}, Emacs | ||
| 310 | formats file time stamps according to what | ||
| 311 | @code{ls-lisp-format-time-list} specifies. The @samp{%}-sequences in | ||
| 312 | @code{ls-lisp-format-time-list} produce locale-dependent month and day | ||
| 313 | names, which might cause misalignment of columns in Dired display. | ||
| 283 | @end ifnottex | 314 | @end ifnottex |
| 284 | 315 | ||
| 285 | @node Windows HOME | 316 | @node Windows HOME |