aboutsummaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/ChangeLog15
-rw-r--r--man/frames.texi6
-rw-r--r--man/gnus.texi2
-rw-r--r--man/msdog.texi31
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 @@
12007-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
62007-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
112007-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
12007-01-20 Markus Triska <markus.triska@gmx.at> 162007-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.
307Double or triple clicking of @kbd{M-Mouse-1} operates on words and 307Double or triple clicking of @kbd{M-Mouse-1} operates on words and
308lines, much like @kbd{Mouse-1}. 308lines, much like @kbd{Mouse-1}.
309 309
310If @code{mouse-yank-at-point} is non-@code{nil}, @kbd{M-Mouse-2} 310If @code{mouse-yank-at-point} is non-@code{nil}, @kbd{M-Mouse-2} yanks
311yanks at point. Then it does not matter precisely where you click; all 311at point. Then it does not matter precisely where you click, or even
312that matters is which window you click on. @xref{Mouse Commands}. 312which 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
19043emacs -batch -l ~/.emacs -l ~/.gnus.el gnus-agent-batch >/dev/null 2>&1 19043emacs -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.
280file-name patterns are supported: if it is non-@code{nil} (the 280file-name patterns are supported: if it is non-@code{nil} (the
281default), they are treated as shell-style wildcards; otherwise they 281default), they are treated as shell-style wildcards; otherwise they
282are treated as Emacs regular expressions. 282are 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
286the date and time of files. @emph{The value of this variable is
287ignored}, unless Emacs cannot determine the current locale. (However,
288if the value of @code{ls-lisp-use-localized-time-format} is
289non-@code{nil}, Emacs obeys @code{ls-lisp-format-time-list} even if
290the current locale is available; see below.)
291
292The value of @code{ls-lisp-format-time-list} is a list of 2 strings.
293The first string is used if the file was modified within the current
294year, while the second string is used for older files. In each of
295these two strings you can use @samp{%}-sequences to substitute parts
296of the time. For example:
297@lisp
298("%b %e %H:%M" "%b %e %Y")
299@end lisp
300
301@noindent
302Note that the strings substituted for these @samp{%}-sequences depend
303on the current locale. @xref{Time Parsing,,, elisp, The Emacs Lisp
304Reference 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
308or ISO-style time format. However, if the value of the variable
309@code{ls-lisp-use-localized-time-format} is non-@code{nil}, Emacs
310formats 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
313names, 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