Adam Sjøgren | 20 May 2013 00:19
Picon
Favicon
Gravatar

[gnus git] branch master updated: m0-7-21-g3a7d9b6 =1= gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left double angle quotation mark.

       via  3a7d9b62cd1d70391338e1d833141a184599b017 (commit)
      from  b92552500dc7796df605f37430daa09213b1eca2 (commit)

- Log -----------------------------------------------------------------
commit 3a7d9b62cd1d70391338e1d833141a184599b017
Author: Adam Sjøgren <asjo <at> koldfront.dk>
Date:   Mon May 20 00:17:20 2013 +0200

    gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left double angle quotation mark.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9efb9fd..499da76 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
 <at>  <at>  -1,3 +1,8  <at>  <at> 
+2013-05-20  Adam Sjøgren  <asjo <at> koldfront.dk>
+
+	* gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
+	double angle quotation mark.
+
 2013-05-19  Adam Sjøgren  <asjo <at> koldfront.dk>

 	* message.el (message-insert-formatted-citation-line): handle finding
diff --git a/lisp/gnus-spec.el b/lisp/gnus-spec.el
index 2606b88..081bc87 100644
--- a/lisp/gnus-spec.el
+++ b/lisp/gnus-spec.el
 <at>  <at>  -441,7 +441,7  <at>  <at>  characters when given a pad value."
 	      (delim (aref (match-string 2) 0)))
 	  (if (or (= delim ?\()
(Continue reading)

Adam Sjøgren | 19 May 2013 21:03
Picon
Favicon
Gravatar

[gnus git] branch master updated: m0-7-20-gb925525 =1= message.el (message-insert-formatted-citation-line): handle case I broke - LASTNAME, FIRSTNAME.

       via  b92552500dc7796df605f37430daa09213b1eca2 (commit)
      from  3347a965e2216d80b867d80c2edfab8ac5bd6aa2 (commit)

- Log -----------------------------------------------------------------
commit b92552500dc7796df605f37430daa09213b1eca2
Author: Adam Sjøgren <asjo <at> koldfront.dk>
Date:   Sun May 19 20:59:23 2013 +0200

    message.el (message-insert-formatted-citation-line): handle case I broke - LASTNAME, FIRSTNAME.

diff --git a/lisp/message.el b/lisp/message.el
index 2374314..ca1a2e6 100644
--- a/lisp/message.el
+++ b/lisp/message.el
 <at>  <at>  -3997,7 +3997,10  <at>  <at>  See `message-citation-line-format'."
                         ((or (= count 2) (= count 3)) (setq fname (car names)
                                                             lname (mapconcat 'identity (cdr names) " ")))
                         ((> count 3) (setq fname (mapconcat 'identity (butlast names (- count 2)) " ")
-                                           lname (mapconcat 'identity (nthcdr 2 names) " "))) )))
+                                           lname (mapconcat 'identity (nthcdr 2 names) " "))) )
+                  (when (string-match "\\(.*\\),\\'" fname)
+                    (let ((newlname (match-string 1 fname)))
+                      (setq fname lname lname newlname)))))
 	      ;; The following letters are not used in `format-time-string':
 	      (push ?E lst) (push "<E>" lst)
 	      (push ?F lst) (push fname lst)

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
(Continue reading)

Adam Sjøgren | 19 May 2013 20:37
Picon
Favicon
Gravatar

[gnus git] branch master updated: m0-7-19-g3347a96 =1= Fix missing space.

       via  3347a965e2216d80b867d80c2edfab8ac5bd6aa2 (commit)
      from  8e3b3fa6d8b9a97c183d9f7ae79657fe11c5af29 (commit)

- Log -----------------------------------------------------------------
commit 3347a965e2216d80b867d80c2edfab8ac5bd6aa2
Author: Adam Sjøgren <asjo <at> koldfront.dk>
Date:   Sun May 19 20:37:38 2013 +0200

    Fix missing space.

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 texi/ChangeLog |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated

hooks/post-receive
--

-- 
Gnus Project

(Continue reading)

Adam Sjøgren | 19 May 2013 20:34
Picon
Favicon
Gravatar

[gnus git] branch master updated: m0-7-18-g8e3b3fa =3= message.el (message-insert-formatted-citation-line): handle finding first/lastname when more than 2 names appear. ; gnus.texi: Fix missing backslash on \\&. ; Show title attribute of span elements as mouse over text.

       via  8e3b3fa6d8b9a97c183d9f7ae79657fe11c5af29 (commit)
       via  8604c8dba00059ece9c624149113eeaf60424071 (commit)
       via  413816a18bfc116cd6e54cea85f880220a978945 (commit)
      from  786ff2141fd1613c88035aae899ec9d71ffb5cd0 (commit)

- Log -----------------------------------------------------------------
commit 8e3b3fa6d8b9a97c183d9f7ae79657fe11c5af29
Author: Adam Sjøgren <asjo <at> koldfront.dk>
Date:   Fri May 17 00:00:02 2013 +0200

    message.el (message-insert-formatted-citation-line): handle finding first/lastname when more than
2 names appear.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9506db7..9efb9fd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
 <at>  <at>  -1,5 +1,10  <at>  <at> 
 2013-05-19  Adam Sjøgren  <asjo <at> koldfront.dk>

+	* message.el (message-insert-formatted-citation-line): handle finding
+	first/lastname when more than 2 names appear.
+
+2013-05-19  Adam Sjøgren  <asjo <at> koldfront.dk>
+
 	* shr.el (shr-tag-span): New function.

 2013-05-18  Glenn Morris  <rgm <at> gnu.org>
diff --git a/lisp/message.el b/lisp/message.el
index 920e805..2374314 100644
(Continue reading)

Katsumi Yamaoka | 18 May 2013 14:27
Favicon
Gravatar

[gnus git] branch master updated: m0-7-15-g786ff21 =1= message.el (message-mode): Use message-mode-abbrev-table, with text-mode-abbrev-table as parent (Bug#14413)

       via  786ff2141fd1613c88035aae899ec9d71ffb5cd0 (commit)
      from  d2e1e2718357db738ca83e7ba9637685319222f6 (commit)

- Log -----------------------------------------------------------------
commit 786ff2141fd1613c88035aae899ec9d71ffb5cd0
Author: Glenn Morris <rgm <at> gnu.org>
Date:   Sat May 18 12:27:40 2013 +0000

    message.el (message-mode): Use message-mode-abbrev-table, with text-mode-abbrev-table as parent (Bug#14413)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c12d076..92bc307 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
 <at>  <at>  -1,3 +1,8  <at>  <at> 
+2013-05-18  Glenn Morris  <rgm <at> gnu.org>
+
+	* message.el (message-mode): Use message-mode-abbrev-table,
+	with text-mode-abbrev-table as parent.  (Bug#14413)
+
 2013-05-16  Katsumi Yamaoka  <yamaoka <at> jpl.org>

 	* message.el (message-expand-group): Decode group names.
diff --git a/lisp/message.el b/lisp/message.el
index 8e5b817..920e805 100644
--- a/lisp/message.el
+++ b/lisp/message.el
 <at>  <at>  -2983,7 +2983,6  <at>  <at>  C-c M-n  `message-insert-disposition-notification-to'  (request receipt).
 C-c M-m  `message-mark-inserted-region' (mark region with enclosing tags).
 C-c M-f  `message-mark-insert-file' (insert file marked with enclosing tags).
(Continue reading)

Katsumi Yamaoka | 17 May 2013 01:29
Favicon
Gravatar

[gnus git] branch master updated: m0-7-14-gd2e1e27 =1= message.el (message-expand-group): Decode group names

       via  d2e1e2718357db738ca83e7ba9637685319222f6 (commit)
      from  6a2843ac1260897fd7b4ae3c422b32fa83d37778 (commit)

- Log -----------------------------------------------------------------
commit d2e1e2718357db738ca83e7ba9637685319222f6
Author: Katsumi Yamaoka <yamaoka <at> jpl.org>
Date:   Thu May 16 23:28:58 2013 +0000

    message.el (message-expand-group): Decode group names

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 24967e8..c12d076 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
 <at>  <at>  -1,3 +1,7  <at>  <at> 
+2013-05-16  Katsumi Yamaoka  <yamaoka <at> jpl.org>
+
+	* message.el (message-expand-group): Decode group names.
+
 2013-05-16  Julien Danjou  <julien <at> danjou.info>

 	* gnus-notifications.el (gnus-notifications-notify): Use photo-file as
diff --git a/lisp/message.el b/lisp/message.el
index f867938..8e5b817 100644
--- a/lisp/message.el
+++ b/lisp/message.el
 <at>  <at>  -8004,7 +8004,7  <at>  <at>  those headers."

 (defun message-expand-group ()
   "Expand the group name under point."
(Continue reading)

Julien Danjou | 16 May 2013 17:52
Gravatar

[gnus git] branch master updated: m0-7-13-g6a2843a =1= gnus-notifications: use photo-file as app-icon

       via  6a2843ac1260897fd7b4ae3c422b32fa83d37778 (commit)
      from  ef1326b8002fb0513ee5ff9c522b26ab6bf41587 (commit)

- Log -----------------------------------------------------------------
commit 6a2843ac1260897fd7b4ae3c422b32fa83d37778
Author: Julien Danjou <julien <at> danjou.info>
Date:   Thu May 16 17:51:47 2013 +0200

    gnus-notifications: use photo-file as app-icon

    Signed-off-by: Julien Danjou <julien <at> danjou.info>

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ca0a60d..24967e8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
 <at>  <at>  -1,3 +1,8  <at>  <at> 
+2013-05-16  Julien Danjou  <julien <at> danjou.info>
+
+	* gnus-notifications.el (gnus-notifications-notify): Use photo-file as
+	app-icon.
+
 2013-05-15  Glenn Morris  <rgm <at> gnu.org>

 	* shr-color.el (shr-color-visible-luminance-min)
diff --git a/lisp/gnus-notifications.el b/lisp/gnus-notifications.el
index f29bdb7..93220ed 100644
--- a/lisp/gnus-notifications.el
+++ b/lisp/gnus-notifications.el
 <at>  <at>  -92,12 +92,12  <at>  <at>  Return a notification id if any, or t on success."
(Continue reading)

Katsumi Yamaoka | 16 May 2013 04:41
Favicon
Gravatar

[gnus git] branch master updated: m0-7-12-gef1326b =1= shr-color.el (shr-color-visible-luminance-min, shr-color-visible-distance-min): Use shr-color group

       via  ef1326b8002fb0513ee5ff9c522b26ab6bf41587 (commit)
      from  fb979a6cd71021111bacc9e4bacfce7637c07506 (commit)

- Log -----------------------------------------------------------------
commit ef1326b8002fb0513ee5ff9c522b26ab6bf41587
Author: Glenn Morris <rgm <at> gnu.org>
Date:   Thu May 16 02:40:59 2013 +0000

    shr-color.el (shr-color-visible-luminance-min, shr-color-visible-distance-min): Use shr-color group

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9df871a..ca0a60d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
 <at>  <at>  -1,3 +1,8  <at>  <at> 
+2013-05-15  Glenn Morris  <rgm <at> gnu.org>
+
+	* shr-color.el (shr-color-visible-luminance-min)
+	(shr-color-visible-distance-min): Use shr-color group.
+
 2013-05-11  Glenn Morris  <rgm <at> gnu.org>

 	* gnus-vm.el: Make it loadable without VM.
diff --git a/lisp/shr-color.el b/lisp/shr-color.el
index 0b320a2..21f1fc4 100644
--- a/lisp/shr-color.el
+++ b/lisp/shr-color.el
 <at>  <at>  -36,14 +36,14  <at>  <at> 
 (defcustom shr-color-visible-luminance-min 40
   "Minimum luminance distance between two colors to be considered visible.
(Continue reading)

Katsumi Yamaoka | 12 May 2013 13:46
Favicon
Gravatar

[gnus git] branch master updated: m0-7-11-gfb979a6 =1= gnus-vm.el: Make it loadable without VM

       via  fb979a6cd71021111bacc9e4bacfce7637c07506 (commit)
      from  cae8ffc46d8446accf3c5d10ded0bc5c845da474 (commit)

- Log -----------------------------------------------------------------
commit fb979a6cd71021111bacc9e4bacfce7637c07506
Author: Glenn Morris <rgm <at> gnu.org>
Date:   Sun May 12 11:46:03 2013 +0000

    gnus-vm.el: Make it loadable without VM

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4b3b8bb..9df871a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
 <at>  <at>  -1,3 +1,9  <at>  <at> 
+2013-05-11  Glenn Morris  <rgm <at> gnu.org>
+
+	* gnus-vm.el: Make it loadable without VM.
+	(gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
+	(vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
+
 2013-05-09  Glenn Morris  <rgm <at> gnu.org>

 	* mml1991.el: Make it loadable.  (Bug#13456)
diff --git a/lisp/gnus-vm.el b/lisp/gnus-vm.el
index fa39bae..55f9965 100644
--- a/lisp/gnus-vm.el
+++ b/lisp/gnus-vm.el
 <at>  <at>  -35,12 +35,10  <at>  <at> 
 (require 'gnus-msg)
(Continue reading)

Katsumi Yamaoka | 10 May 2013 00:29
Favicon
Gravatar

[gnus git] branch master updated: m0-7-10-gcae8ffc =1= Fix a bunch of custom types, and more

       via  cae8ffc46d8446accf3c5d10ded0bc5c845da474 (commit)
      from  d8f3afde92c00250e3e8ab94cb7f70336f159525 (commit)

- Log -----------------------------------------------------------------
commit cae8ffc46d8446accf3c5d10ded0bc5c845da474
Author: Glenn Morris <rgm <at> gnu.org>
Date:   Thu May 9 22:29:11 2013 +0000

    Fix a bunch of custom types, and more

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3c98f80..4b3b8bb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
 <at>  <at>  -1,3 +1,26  <at>  <at> 
+2013-05-09  Glenn Morris  <rgm <at> gnu.org>
+
+	* mml1991.el: Make it loadable.  (Bug#13456)
+
+	* gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
+	* gnus-async.el (gnus-async-post-fetch-function):
+	* gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
+	* gnus-html.el (gnus-html-image-cache-ttl):
+	* gnus-notifications.el (gnus-notifications-timeout):
+	* gnus-picon.el (gnus-picon-properties):
+	* gnus-util.el (gnus-completion-styles):
+	* gnus.el (gnus-other-frame-resume-function):
+	* message.el (message-user-organization-file)
+	(message-cite-reply-position):
+	* nnir.el (nnir-summary-line-format)
(Continue reading)

Katsumi Yamaoka | 7 May 2013 13:43
Favicon
Gravatar

[gnus git] branch master updated: m0-7-9-gd8f3afd =1= gnus-art.el (gnus-article-describe-bindings): Add a comment

       via  d8f3afde92c00250e3e8ab94cb7f70336f159525 (commit)
      from  95184d21f8d1bfbaddb5798912b4bfe95f08e9ed (commit)

- Log -----------------------------------------------------------------
commit d8f3afde92c00250e3e8ab94cb7f70336f159525
Author: Katsumi Yamaoka <yamaoka <at> jpl.org>
Date:   Tue May 7 11:43:26 2013 +0000

    gnus-art.el (gnus-article-describe-bindings): Add a comment

diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index 9f12e45..64598b1 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
 <at>  <at>  -6681,6 +6681,8  <at>  <at>  then we display only bindings that start with that prefix."
 		    (with-current-buffer ,(current-buffer)
 		      (gnus-article-describe-bindings prefix)))
 		  ,prefix)))
+      ;; Loading `help-mode' here is necessary if `describe-bindings'
+      ;; is replaced with something, e.g. `helm-descbinds'.
       (require 'help-mode)
       (with-current-buffer (let (help-xref-following) (help-buffer))
 	(setq help-xref-stack-item item)))))

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
(Continue reading)


Gmane