aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorTeodor Zlatanov2011-05-18 22:16:26 +0000
committerKatsumi Yamaoka2011-05-18 22:16:26 +0000
commit627abcddd1c45a07d58b9c0cbfd6bb62caf256a9 (patch)
tree12e7704c45624af3056c43627ba785b0ce1df1c1 /doc
parent638f517cc56fad217210d90ea853d647e14b463d (diff)
downloademacs-627abcddd1c45a07d58b9c0cbfd6bb62caf256a9.tar.gz
emacs-627abcddd1c45a07d58b9c0cbfd6bb62caf256a9.zip
gnus.texi (Gnus Registry Setup): Rename from "Setup".
(Store custom flags and keywords): Mention `gnus-registry-user-format-function-M' and `gnus-registry-user-format-function-M2'. gnus-registry.el (gnus-registry-user-format-function-M): Use `mapconcat'. (gnus-registry-user-format-function-M2): Use to see the full text of the marks. Make "," the mark text separator.
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/ChangeLog7
-rw-r--r--doc/misc/gnus.texi21
2 files changed, 25 insertions, 3 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 65dcdd80bca..917ebf0d675 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,10 @@
12011-05-18 Teodor Zlatanov <tzz@lifelogs.com>
2
3 * gnus.texi (Gnus Registry Setup): Rename from "Setup".
4 (Store custom flags and keywords): Mention
5 `gnus-registry-user-format-function-M' and
6 `gnus-registry-user-format-function-M2'.
7
12011-05-17 Paul Eggert <eggert@cs.ucla.edu> 82011-05-17 Paul Eggert <eggert@cs.ucla.edu>
2 9
3 * texinfo.tex: Sync from gnulib, version 2011-05-11.16. 10 * texinfo.tex: Sync from gnulib, version 2011-05-11.16.
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index 931a9bedb39..a6b79237f08 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -25906,15 +25906,15 @@ of all messages matching a particular set of criteria.
25906@end enumerate 25906@end enumerate
25907 25907
25908@menu 25908@menu
25909* Setup:: 25909* Gnus Registry Setup::
25910* Fancy splitting to parent:: 25910* Fancy splitting to parent::
25911* Registry Article Refer Method:: 25911* Registry Article Refer Method::
25912* Store custom flags and keywords:: 25912* Store custom flags and keywords::
25913* Store arbitrary data:: 25913* Store arbitrary data::
25914@end menu 25914@end menu
25915 25915
25916@node Setup 25916@node Gnus Registry Setup
25917@subsection Setup 25917@subsection Gnus Registry Setup
25918 25918
25919Fortunately, setting up the Gnus registry is pretty easy: 25919Fortunately, setting up the Gnus registry is pretty easy:
25920 25920
@@ -26086,6 +26086,21 @@ Call this function to mark an article with a custom registry mark. It
26086will offer the available marks for completion. 26086will offer the available marks for completion.
26087@end defun 26087@end defun
26088 26088
26089You can use @code{defalias} to install a summary line formatting
26090function that will show the registry marks. There are two flavors of
26091this function, either showing the marks as single characters, using
26092their @code{:char} property, or showing the marks as full strings.
26093
26094@lisp
26095;; show the marks as single characters (see the :char property in
26096;; `gnus-registry-marks'):
26097;; (defalias 'gnus-user-format-function-M 'gnus-registry-user-format-function-M)
26098
26099;; show the marks by name (see `gnus-registry-marks'):
26100;; (defalias 'gnus-user-format-function-M 'gnus-registry-user-format-function-M2)
26101@end lisp
26102
26103
26089@node Store arbitrary data 26104@node Store arbitrary data
26090@subsection Store arbitrary data 26105@subsection Store arbitrary data
26091 26106