unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Tino Calancha <tino.calancha@gmail.com>
To: Eric Abrahamsen <eric@ericabrahamsen.net>
Cc: tino.calancha@gmail.com,
	Stefan Monnier <monnier@iro.umontreal.ca>,
	emacs-devel@gnu.org
Subject: Re: [ELPA] I regret using subtree
Date: Mon, 13 Mar 2017 19:01:45 +0900	[thread overview]
Message-ID: <87inndlcl2.fsf@calancha-pc> (raw)
In-Reply-To: <87bmt5udfl.fsf@ericabrahamsen.net> (Eric Abrahamsen's message of "Sun, 12 Mar 2017 19:18:38 -0700")

Eric Abrahamsen <eric@ericabrahamsen.net> writes:

> Stefan Monnier <monnier@iro.umontreal.ca> writes:
>> The patch seems OK, except it should put the Cc in the "X-Debbugs-Cc:"
>> header (so that the maintainer gets the email with the bug-number
>> rather than email before assigned a bug-number).
>
> Here's an updated version.

I)
There are files with more than 1 maintainer/author.  Just pick up the first one
may not suffice.
E.g.,
(lm-authors (find-library-name "tramp"))
=> (("Kai Großjohann" . "kai.grossjohann@gmx.net")
    ("Michael Albinus" . "michael.albinus@gmx.de"))

(lm-maintainer (find-library-name "tramp"))
=> ("Kai Großjohann" . "kai.grossjohann@gmx.net")
;; Your patch won't send CC to Michael.
I suggest to CC all of them.  In order to do that `lm-maintainer' must
be updated.  See patches below.

II) There are files with plural versions of 'Author', 'Maintainer' headers
For instance,
lisp/net/rcirc.el
In this case `lm-maintainer' fall back in `lm-authors' so that Liu wouldn't
be in CC.

Another example,
lisp/color.el
Just 'Authors' header, no 'Maintainer' one.  There wouldn't be CC in this case.

III)
The e-mail format might confuse these tools.
E.g.
lisp/org/org-protocol.el
;; Maintainer: Sebastian Rose <sebastian_rose AT gmx DOT de>
or in
lisp/progmodes/prolog.el
;; Maintainer: Stefan Bruda <stefan(at)bruda(dot)ca>

--8<-----------------------------cut here---------------start------------->8---
From b0a51241e4393ee62673c181c03317649e9652fe Mon Sep 17 00:00:00 2001
From: Tino Calancha <tino.calancha@gmail.com>
Date: Mon, 13 Mar 2017 18:56:45 +0900
Subject: [PATCH 1/3] lm-maintainer: Allow return more than 1 maintainer

* lisp/emacs-lisp/lisp-mnt.el (lm-authors, lm-maintainer): Pluralize regexp.
(lm-header-multiline): Fix regexp.
(lm-maintainer): Add second argument ALL.
---
 lisp/emacs-lisp/lisp-mnt.el | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el
index fc3caf3359..c96d224679 100644
--- a/lisp/emacs-lisp/lisp-mnt.el
+++ b/lisp/emacs-lisp/lisp-mnt.el
@@ -118,6 +118,8 @@
 
 ;;; Variables:
 
+(eval-when-compile (require 'subr-x))
+
 (defgroup lisp-mnt nil
   "Utility functions for Emacs Lisp maintainers."
   :prefix "lm-"
@@ -285,7 +287,7 @@ lm-header-multiline
       (when res
 	(setq res (list res))
 	(forward-line 1)
-	(while (looking-at "^;+\\(\t\\|[\t\s]\\{2,\\}\\)\\(.+\\)")
+	(while (looking-at "^;+\\(\t+\s?+\\|[[:blank:]]\\{2,\\}\\)\\(.+\\)")
 	  (push (match-string-no-properties 2) res)
 	  (forward-line 1)))
       (nreverse res))))
@@ -383,17 +385,20 @@ lm-authors
 Each element of the list is a cons; the car is the full name,
 the cdr is an email address."
   (lm-with-file file
-    (let ((authorlist (lm-header-multiline "author")))
+    (let ((authorlist (lm-header-multiline "author[s]?")))
       (mapcar 'lm-crack-address authorlist))))
 
-(defun lm-maintainer (&optional file)
+(defun lm-maintainer (&optional file all)
   "Return the maintainer of file FILE, or current buffer if FILE is nil.
-The return value has the form (NAME . ADDRESS)."
+If optional arg ALL is non-nil, then return all maintainers.  Otherwise,
+return just the first one.  In the former case the return value has
+the form ((NAME1 . ADDRESS1) (NAME2 . ADDRESS2) ...); in the latter case,
+the return value is just (NAME1 . ADDRESS1)."
   (lm-with-file file
-    (let ((maint (lm-header "maintainer")))
-      (if maint
-	  (lm-crack-address maint)
-	(car (lm-authors))))))
+    (let ((people (if-let (maint (lm-header-multiline "maintainer[s]?"))
+                      (mapcar 'lm-crack-address maint)
+                    (lm-authors))))
+      (if all people (car people)))))
 
 (defun lm-creation-date (&optional file)
   "Return the created date given in file FILE, or current buffer if FILE is nil."
-- 
2.11.0

From 26be86a780cc9c5f497a6e99bd41fc81a2be8ad6 Mon Sep 17 00:00:00 2001
From: Tino Calancha <tino.calancha@gmail.com>
Date: Mon, 13 Mar 2017 18:56:45 +0900
Subject: [PATCH 2/3] * lisp/mail/emacsbug.el (report-emacs-bug): Apply Eric
 patch.

---
 lisp/mail/emacsbug.el | 20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index c1aec6923f..656eeabe0f 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -123,17 +123,26 @@ message-send-mail-function
 (defvar message-sendmail-envelope-from)
 
 ;;;###autoload
-(defun report-emacs-bug (topic &optional unused)
+(defun report-emacs-bug (topic package &optional unused)
   "Report a bug in GNU Emacs.
 Prompts for bug subject.  Leaves you in a mail buffer."
   (declare (advertised-calling-convention (topic) "24.5"))
-  (interactive "sBug Subject: ")
+  (interactive (list
+                (read-string "Bug Subject: ")
+                (completing-read
+                 "Package: "
+                 (progn
+                   (package-initialize)
+                   package-alist))))
   ;; The syntax `version;' is preferred to `[version]' because the
   ;; latter could be mistakenly stripped by mailing software.
   (setq topic (concat emacs-version "; " topic))
   (let ((from-buffer (current-buffer))
 	(can-insert-mail (or (report-emacs-bug-can-use-xdg-email)
 			     (report-emacs-bug-can-use-osx-open)))
+        (cc (unless (or (string-empty-p package) (string= package "emacs"))
+              (require 'finder)
+              (lm-maintainer (find-library-name package))))
         user-point message-end-point)
     (setq message-end-point
 	  (with-current-buffer (messages-buffer)
@@ -160,6 +169,13 @@ report-emacs-bug
       (when (and (not message-sendmail-envelope-from)
 		 (message-bogus-recipient-p (message-make-address)))
 	(set (make-local-variable 'message-sendmail-envelope-from) 'header)))
+    (when (cdr cc) ;; cdr is the email address.
+      (if (eq major-mode 'message-mode)
+          (message-position-on-field "X-Debbugs-Cc")
+        (mail-cc))
+      (if (car cc)
+          (insert (format "%s <%s>" (car cc) (cdr cc)))
+        (insert (format "%s" (cdr cc)))))
     (rfc822-goto-eoh)
     (forward-line 1)
     ;; Move the mail signature to the proper place.
-- 
2.11.0

From 2114a448ad145923980dbe4d09ae5feff18eb49d Mon Sep 17 00:00:00 2001
From: Tino Calancha <tino.calancha@gmail.com>
Date: Mon, 13 Mar 2017 18:56:45 +0900
Subject: [PATCH 3/3] * lisp/mail/emacsbug.el (report-emacs-bug): Send Cc to
 all maintainers.

---
 lisp/mail/emacsbug.el | 22 ++++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index 656eeabe0f..018d2ea6a7 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -142,7 +142,7 @@ report-emacs-bug
 			     (report-emacs-bug-can-use-osx-open)))
         (cc (unless (or (string-empty-p package) (string= package "emacs"))
               (require 'finder)
-              (lm-maintainer (find-library-name package))))
+              (lm-maintainer (find-library-name package) 'all)))
         user-point message-end-point)
     (setq message-end-point
 	  (with-current-buffer (messages-buffer)
@@ -169,13 +169,19 @@ report-emacs-bug
       (when (and (not message-sendmail-envelope-from)
 		 (message-bogus-recipient-p (message-make-address)))
 	(set (make-local-variable 'message-sendmail-envelope-from) 'header)))
-    (when (cdr cc) ;; cdr is the email address.
-      (if (eq major-mode 'message-mode)
-          (message-position-on-field "X-Debbugs-Cc")
-        (mail-cc))
-      (if (car cc)
-          (insert (format "%s <%s>" (car cc) (cdr cc)))
-        (insert (format "%s" (cdr cc)))))
+    (dolist (maint cc)
+      (when (cdr maint) ;; cdr is the email address.
+        (if (eq major-mode 'message-mode)
+            (message-position-on-field "X-Debbugs-Cc")
+          (mail-cc))
+        (cond ((car maint)
+               (insert (format "%s%s <%s>"
+                               (if (looking-back ":[[:blank:]]+?" (point-at-bol)) "" ", ")
+                               (car maint) (cdr maint))))
+              (t
+               (insert (format "%s%s"
+                               (if (looking-back ":[[:blank:]]+?" (point-at-bol)) "" ", ")
+                               (cdr maint)))))))
     (rfc822-goto-eoh)
     (forward-line 1)
     ;; Move the mail signature to the proper place.
-- 
2.11.0

--8<-----------------------------cut here---------------end--------------->8---
In GNU Emacs 26.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.22.8)
 of 2017-03-13
Repository revision: 94b59f7dd1e8611495ff0f4596dc6dec20e268af



  reply	other threads:[~2017-03-13 10:01 UTC|newest]

Thread overview: 454+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <rrd1v05yaj.fsf@fencepost.gnu.org>
     [not found] ` <56BE7E37.3090708@cs.ucla.edu>
     [not found]   ` <4hd1rw1ubr.fsf@fencepost.gnu.org>
     [not found]     ` <nz60x22nt2.fsf@fencepost.gnu.org>
     [not found]       ` <83vb50wxhv.fsf@gnu.org>
     [not found]         ` <m3a8mcdjjx.fsf@gnus.org>
     [not found]           ` <m2io0zz56d.fsf@newartisans.com>
     [not found]             ` <87y49vz4cg.fsf@acer.localhost.com>
2016-03-06 21:52               ` Is it time to drop ChangeLogs? (Was: bug#21998: Run 'make change-history' on release branch) John Wiegley
2016-03-06 22:05                 ` Eric S. Raymond
2016-03-08 11:11                   ` Is it time to drop ChangeLogs? Uwe Brauer
2016-03-08 14:43                     ` Stefan Monnier
2016-03-08 14:58                       ` Uwe Brauer
2016-03-08 15:16                         ` Stefan Monnier
2016-03-08 16:13                         ` Paul Eggert
2016-03-08 16:17                       ` Eli Zaretskii
2016-03-08 19:21                       ` ChangeLog to *VC-log* (was: Is it time to drop ChangeLogs?) Stephen Berman
2016-03-08 22:26                         ` ChangeLog to *VC-log* Dmitry Gutov
2016-03-08 23:07                           ` Stephen Berman
2016-03-08 23:11                             ` Dmitry Gutov
2016-03-09 19:30                               ` Stephen Berman
2016-03-09 19:33                                 ` Lars Magne Ingebrigtsen
2016-03-09 20:00                                 ` Eli Zaretskii
2016-03-09 23:01                                   ` Stephen Berman
2016-03-10  6:26                                     ` Eli Zaretskii
2016-03-10 12:59                                       ` Stephen Berman
2016-03-10 13:13                                       ` Stefan Monnier
2016-03-10  7:16                                 ` Xue Fuqiao
2016-03-10 12:59                                   ` Stephen Berman
2016-03-09  2:01                             ` Stefan Monnier
2016-03-06 22:34                 ` Is it time to drop ChangeLogs? (Was: bug#21998: Run 'make change-history' on release branch) Paul Eggert
2016-03-07 16:26                   ` bug#21998: " Eli Zaretskii
2016-03-06 23:06                 ` Drew Adams
2016-03-07  0:15                   ` Is it time to drop ChangeLogs? John Wiegley
2016-03-07  0:24                     ` Drew Adams
2016-03-07 16:28                     ` Eli Zaretskii
2016-03-07 16:31                       ` John Wiegley
2016-03-07 16:57                         ` Eli Zaretskii
2016-03-07 20:46                       ` Nikolaus Rath
2016-03-07 21:04                         ` Eric S. Raymond
2016-03-07 21:14                           ` Eli Zaretskii
2016-03-07 21:10                         ` Eli Zaretskii
2016-03-07 21:15                           ` Nikolaus Rath
2016-03-07 21:23                             ` Eli Zaretskii
2016-03-07 21:28                               ` Nikolaus Rath
2016-03-08  3:38                                 ` Eli Zaretskii
2016-03-08  5:00                                   ` Nikolaus Rath
2016-03-08 15:59                                     ` Eli Zaretskii
2016-03-08 16:12                                       ` Nikolaus Rath
2016-03-08 16:26                                         ` Stefan Monnier
2016-03-08 16:44                                         ` Eli Zaretskii
2016-03-07 21:32                               ` Karl Fogel
2016-03-07 21:19                         ` Dmitry Gutov
2016-03-07 21:43                           ` Karl Fogel
2016-03-07 22:01                             ` Dmitry Gutov
2016-03-07 22:24                               ` Karl Fogel
2016-03-07 22:45                                 ` Dmitry Gutov
2016-03-07 22:47                                   ` Dmitry Gutov
2016-03-07 23:24                                   ` Karl Fogel
2016-03-08  1:25                                     ` Dmitry Gutov
2016-03-08 15:21                                 ` Andy Moreton
2016-03-08 16:21                                   ` Eli Zaretskii
2016-03-08 15:48                             ` Eli Zaretskii
2016-03-07 21:30                         ` Lars Magne Ingebrigtsen
2016-03-08  3:41                           ` Eli Zaretskii
2016-03-08 16:54                           ` John Wiegley
2016-03-08 17:18                             ` Karl Fogel
2016-03-08 17:21                               ` John Wiegley
2016-03-08 17:35                                 ` Karl Fogel
2016-03-08 17:40                                 ` Eli Zaretskii
2016-03-08 18:19                                   ` Karl Fogel
2016-03-08 19:03                             ` Stefan Monnier
2016-03-08 20:28                             ` Óscar Fuentes
2016-03-08 20:37                               ` Eli Zaretskii
2016-03-08 21:25                                 ` Ingo Lohmar
2016-03-08 21:36                                   ` Alan Mackenzie
2016-03-09 19:32                                     ` Ingo Lohmar
2016-03-09 20:06                                       ` Eli Zaretskii
2016-03-09 20:22                                         ` Ingo Lohmar
2016-03-09 20:48                                           ` Eli Zaretskii
2016-03-10 21:21                                         ` Richard Stallman
2016-03-09  3:46                                   ` Eli Zaretskii
2016-03-09  6:41                                     ` John Wiegley
2016-03-09 15:53                                       ` Eli Zaretskii
2016-03-09 16:41                                         ` Eli Zaretskii
2016-03-09 18:09                                         ` Paul Eggert
2016-03-09 18:18                                           ` Karl Fogel
2016-03-09 18:32                                             ` Eli Zaretskii
2016-03-09 19:36                                               ` Karl Fogel
2016-03-09 20:21                                                 ` Eli Zaretskii
2016-03-09 20:42                                                   ` Karl Fogel
2016-03-09 20:59                                                     ` Eli Zaretskii
2016-03-09 23:03                                                   ` Nikolaus Rath
2016-03-09 23:39                                                   ` Paul Eggert
2016-03-10  6:47                                                     ` Eli Zaretskii
2016-03-10 21:23                                           ` Richard Stallman
2016-03-11  1:51                                             ` Paul Eggert
2016-03-11  8:48                                             ` Eli Zaretskii
2016-03-11 17:17                                               ` Nikolaus Rath
2016-03-11 18:03                                                 ` Paul Eggert
2016-03-11 18:28                                                 ` Eli Zaretskii
2016-03-11 19:53                                                   ` Nikolaus Rath
2016-03-11 20:04                                                     ` Eli Zaretskii
2016-03-11 20:08                                                       ` Nikolaus Rath
2016-03-11 20:33                                                         ` Eli Zaretskii
2016-03-12  3:32                                                           ` Nikolaus Rath
2016-03-12  7:47                                                             ` Eli Zaretskii
2016-03-13 21:43                                                               ` Nikolaus Rath
2016-03-14  3:33                                                                 ` Eli Zaretskii
2016-03-14 14:56                                                                   ` Nikolaus Rath
2016-03-14 17:09                                                                     ` Eli Zaretskii
2016-03-11 22:37                                                 ` Stefan Monnier
2016-03-12  3:33                                                   ` Nikolaus Rath
2016-03-12 19:26                                                   ` Richard Stallman
2016-03-12 21:08                                                     ` Stefan Monnier
2016-03-12 22:10                                                       ` John Wiegley
2016-03-12 22:33                                                         ` Stefan Monnier
2016-03-13 15:53                                                           ` Eli Zaretskii
2016-03-13 16:05                                                             ` Dmitry Gutov
2016-03-13 17:16                                                               ` Eli Zaretskii
2016-03-13 17:22                                                                 ` Yuri Khan
2016-03-13 17:30                                                                   ` Eli Zaretskii
2016-03-13 17:42                                                                     ` Yuri Khan
2016-03-13 18:09                                                                       ` Eli Zaretskii
2016-03-13 17:16                                                               ` Stefan Monnier
2016-03-13 17:52                                                             ` David Caldwell
2016-03-09 16:41                                       ` Eli Zaretskii
2016-03-09 18:24                                         ` Paul Eggert
2016-03-09 18:41                                           ` Eli Zaretskii
2016-03-09 19:10                                             ` Paul Eggert
2016-03-09 19:20                                               ` Eli Zaretskii
2016-03-09 19:51                                     ` Ingo Lohmar
2016-03-09 20:30                                       ` Eli Zaretskii
2016-03-09 20:50                                         ` Ingo Lohmar
2016-03-09 21:03                                           ` Eli Zaretskii
2016-03-08  3:30                         ` Stefan Monnier
2016-03-08  5:33                           ` Nikolaus Rath
2016-03-08  6:39                             ` Eric Abrahamsen
2016-03-08 16:08                               ` Nikolaus Rath
2016-03-08 16:43                                 ` Eli Zaretskii
2016-03-09  0:47                                 ` Eric Abrahamsen
2016-03-08 14:38                             ` Stefan Monnier
2016-03-07  0:22                 ` Mathieu Lirzin
2016-03-07  1:19                   ` bug#21998: " Eric S. Raymond
2016-03-07 16:30                   ` Eli Zaretskii
2016-03-07 16:33                     ` John Wiegley
2016-03-07 16:58                       ` Eli Zaretskii
2016-03-07 17:16                         ` Should we restore manually maintained ChangeLogs (was: Is it time to drop ChangeLogs?) John Wiegley
2016-03-07 17:42                           ` Should we restore manually maintained ChangeLogs Karl Fogel
2016-03-07 17:50                           ` Should we restore manually maintained ChangeLogs (was: Is it time to drop ChangeLogs?) Eli Zaretskii
2016-03-07 19:02                             ` Should we restore manually maintained ChangeLogs Paul Eggert
2016-03-07 21:06                               ` Eli Zaretskii
2016-03-07 21:42                                 ` Dmitry Gutov
2016-03-08 15:45                                   ` Eli Zaretskii
2016-03-08 16:14                                     ` Stefan Monnier
2016-03-08 16:46                                       ` Eli Zaretskii
2016-03-08 16:34                                     ` Paul Eggert
2016-03-08 17:05                                       ` Eli Zaretskii
2016-03-09  1:08                                         ` Paul Eggert
2016-03-09  3:47                                           ` Eli Zaretskii
2016-03-08 17:44                                     ` Dmitry Gutov
2016-03-08 18:02                                       ` Eli Zaretskii
2016-03-08 18:11                                         ` Dmitry Gutov
2016-03-07 23:31                                 ` Paul Eggert
2016-03-08 14:03                                   ` Mathieu Lirzin
2016-03-08 15:15                                     ` Stefan Monnier
2016-03-08 16:19                                       ` Eli Zaretskii
2016-03-08 16:31                                         ` Stefan Monnier
2016-03-08 16:15                                     ` Eli Zaretskii
2016-03-08 15:50                                   ` Eli Zaretskii
2016-03-09  7:58                                     ` Paul Eggert
2016-03-09 13:19                                       ` Stefan Monnier
2016-03-09 16:10                                         ` Dmitry Gutov
2016-03-09 18:39                                           ` Stefan Monnier
2016-03-09 18:49                                             ` Dmitry Gutov
2016-03-09 17:42                                         ` Paul Eggert
2016-03-09 18:01                                           ` Eli Zaretskii
2016-03-09 18:10                                             ` Alan Mackenzie
2016-03-09 19:09                                               ` Stefan Monnier
2016-03-09 19:34                                                 ` Alan Mackenzie
2016-03-09 19:42                                                   ` Andreas Schwab
2016-03-09 23:39                                                     ` Christopher Allan Webber
2016-03-09 21:25                                                   ` Stefan Monnier
2016-03-09 23:08                                                 ` Nikolaus Rath
2016-03-09 23:43                                                   ` Andreas Schwab
2016-03-10  6:49                                                     ` Eli Zaretskii
2016-03-10  9:05                                                       ` Andreas Schwab
2016-03-10  9:44                                                         ` Eli Zaretskii
2016-03-10 10:00                                                           ` Andreas Schwab
2016-03-10 10:34                                                             ` Eli Zaretskii
2016-03-10 11:49                                                               ` Sven Axelsson
2016-03-10 13:08                                                                 ` Eli Zaretskii
2016-03-10 13:14                                                                   ` Evgeny Panasyuk
2016-03-10 13:25                                                                     ` Sven Axelsson
2016-03-10 13:43                                                                       ` Eli Zaretskii
2016-03-13  4:04                                                                         ` John Wiegley
2016-03-13 16:08                                                                           ` Eli Zaretskii
2016-03-10 15:03                                                                 ` Stefan Monnier
2016-03-10 16:01                                                                   ` Sven Axelsson
2016-03-10 16:34                                                                   ` Paul Eggert
2016-03-10 17:17                                                                     ` Stefan Monnier
2016-03-10 17:32                                                                       ` Yuri Khan
2016-03-10 17:39                                                                       ` Paul Eggert
2016-03-10 18:50                                                                       ` Eli Zaretskii
2016-03-10 19:09                                                                         ` Stefan Monnier
2016-03-09 23:30                                                 ` Noam Postavsky
2016-03-10 13:03                                                   ` Stefan Monnier
2016-03-13  4:06                                                 ` John Wiegley
2016-03-09 18:10                                             ` Dmitry Gutov
2016-03-09 18:55                                             ` Paul Eggert
2016-03-09 19:14                                               ` Eli Zaretskii
2016-03-09 19:26                                                 ` Paul Eggert
2016-03-09 19:57                                                   ` Eli Zaretskii
2016-03-10  1:32                                                     ` Paul Eggert
2016-03-10  6:55                                                       ` Eli Zaretskii
2016-03-10 16:41                                                         ` Paul Eggert
2016-03-10 17:20                                                           ` Stefan Monnier
2016-03-10 17:39                                                           ` Wolfgang Jenkner
2016-03-09 16:04                                       ` Eli Zaretskii
2016-03-09 18:16                                         ` Paul Eggert
2016-03-09 18:27                                           ` Eli Zaretskii
2016-03-09 18:34                                             ` Paul Eggert
2016-03-09 18:39                                               ` Dmitry Gutov
2016-03-09 18:55                                                 ` Paul Eggert
2016-03-09 18:44                                               ` Eli Zaretskii
2016-03-07 18:05                           ` Andy Moreton
2016-03-07 23:05                             ` Dmitry Gutov
2016-03-07 18:07                     ` Is it time to drop ChangeLogs? Óscar Fuentes
2016-03-07 18:13                       ` Óscar Fuentes
2016-03-07 20:59                         ` Eli Zaretskii
2016-03-07 21:10                           ` Óscar Fuentes
2016-03-07 21:18                             ` Eli Zaretskii
2016-03-07 21:29                               ` Óscar Fuentes
2016-03-07 21:56                                 ` Clément Pit--Claudel
2016-03-07 22:19                                   ` Óscar Fuentes
2016-03-08  3:45                                     ` Eli Zaretskii
2016-03-08  4:34                                       ` Óscar Fuentes
2016-03-08  6:16                                         ` David Engster
2016-03-08 13:53                                           ` Óscar Fuentes
2016-03-08 17:16                                             ` David Engster
2016-03-08 20:09                                               ` Óscar Fuentes
2016-03-08 15:58                                         ` Eli Zaretskii
2016-03-08 20:00                                           ` Óscar Fuentes
2016-03-08  3:44                                   ` Eli Zaretskii
2016-03-08  3:25                                 ` Code reviews (was: Is it time to drop ChangeLogs?) Stefan Monnier
2016-03-08  4:15                                   ` Code reviews Óscar Fuentes
2016-03-08  5:30                                     ` Stefan Monnier
2016-03-08  8:48                                   ` Phillip Lord
2016-03-08 12:09                                     ` Yuri Khan
2016-03-08 13:27                                     ` Stefan Monnier
2016-03-09 15:06                                       ` Phillip Lord
2016-03-08 16:09                                     ` Eli Zaretskii
2016-03-09 15:09                                       ` Phillip Lord
2016-03-10 10:16                                     ` Andreas Röhler
2016-03-08 15:54                                   ` Code reviews (was: Is it time to drop ChangeLogs?) Eli Zaretskii
2016-03-08 16:21                                     ` Code reviews Stefan Monnier
2016-03-08 16:51                                       ` Eli Zaretskii
2016-03-08  3:39                                 ` Is it time to drop ChangeLogs? Eli Zaretskii
2016-03-08  4:23                                   ` Óscar Fuentes
2016-03-08 15:57                                     ` Eli Zaretskii
2016-03-08 16:39                                       ` Nikolaus Rath
2016-03-08 19:57                                       ` Óscar Fuentes
2016-03-08 20:56                                         ` David Caldwell
2016-03-08 21:16                                           ` Dmitry Gutov
2016-03-08 21:23                                             ` John Wiegley
2016-03-08 21:26                                               ` Dmitry Gutov
2016-03-08 21:59                                               ` Giuseppe Scrivano
2016-03-08 21:27                                             ` David Caldwell
2016-03-08 21:37                                               ` Dmitry Gutov
2016-03-08 21:33                                           ` Óscar Fuentes
2016-03-07 20:58                       ` Eli Zaretskii
2016-03-07  9:29                 ` Alan Mackenzie
2016-03-08  3:01                   ` Stefan Monnier
2016-03-07 16:24                 ` Is it time to drop ChangeLogs? (Was: bug#21998: Run 'make change-history' on release branch) Eli Zaretskii
2016-03-07 16:29                   ` Is it time to drop ChangeLogs? John Wiegley
2016-03-07 16:53                     ` Eli Zaretskii
2016-03-09 18:52                   ` Is it time to drop ChangeLogs? (Was: bug#21998: Run 'make change-history' on release branch) Yuri Khan
2016-03-09 19:10                     ` Eli Zaretskii
2016-03-09 19:18                       ` Paul Eggert
2016-03-09 19:53                         ` Eli Zaretskii
2016-03-09 23:22                           ` Paul Eggert
2016-03-10  6:36                             ` Eli Zaretskii
2016-03-10  9:14                               ` Yuri Khan
2016-03-10  9:46                                 ` Eli Zaretskii
2016-03-13 20:06                               ` Paul Eggert
2016-03-08  2:59                 ` Is it time to drop ChangeLogs? Stefan Monnier
2016-03-08  3:41                   ` Christopher Allan Webber
2016-03-08  3:48                   ` Eli Zaretskii
2016-03-08  4:02                     ` Stefan Monnier
2016-03-08  6:51                       ` Paul Eggert
2016-07-06 14:20                 ` Ted Zlatanov
2016-07-06 15:08                   ` Robert Weiner
2016-07-06 15:17                     ` Noam Postavsky
2016-07-07 21:56                     ` Richard Stallman
2016-07-06 15:36                   ` Eli Zaretskii
2016-07-06 16:06                     ` Ted Zlatanov
2016-07-06 16:36                       ` Eli Zaretskii
2016-07-06 17:03                         ` Ted Zlatanov
2016-07-06 17:23                           ` Eli Zaretskii
2016-07-06 17:44                             ` Clément Pit--Claudel
2016-07-06 18:32                               ` Eli Zaretskii
2016-07-06 19:16                                 ` Clément Pit--Claudel
2016-07-07  2:32                                   ` Eli Zaretskii
2016-07-06 17:39                           ` John Wiegley
2016-07-07  1:18                             ` Ted Zlatanov
2016-07-07  2:44                               ` John Wiegley
2016-07-07  7:31                                 ` Paul Eggert
2016-07-07 13:18                                   ` Ted Zlatanov
2016-07-07 14:26                                     ` Paul Eggert
2016-07-07 14:49                                       ` Ted Zlatanov
2016-07-07 15:39                                       ` Óscar Fuentes
2016-07-08 13:38                                         ` Richard Stallman
2016-07-08 14:02                                           ` Óscar Fuentes
2016-07-08 14:15                                             ` Óscar Fuentes
2016-07-08 14:24                                             ` Eli Zaretskii
2016-07-08 15:07                                               ` Óscar Fuentes
2016-07-08 15:25                                                 ` Eli Zaretskii
2016-07-08 22:58                                                   ` Dmitry Gutov
2016-07-08 23:29                                                     ` John Wiegley
2016-07-08 23:39                                                       ` vc-region-history, was: " Dmitry Gutov
2016-07-09  7:03                                                         ` Eli Zaretskii
2016-07-09 13:29                                                           ` Kaushal Modi
2016-07-09  7:00                                                     ` Eli Zaretskii
2016-07-09 23:04                                                       ` Dmitry Gutov
2016-07-10  2:42                                                         ` Eli Zaretskii
2016-07-09 15:19                                                 ` Tino Calancha
2016-07-09 16:59                                                 ` Richard Stallman
2016-07-10 14:21                                             ` Richard Stallman
2016-07-07 22:02                               ` Richard Stallman
2016-07-07 21:57                           ` Richard Stallman
2016-07-06 17:41                       ` Paul Eggert
2016-07-07 11:29                         ` Phillip Lord
2016-07-07 12:43                           ` Noam Postavsky
2016-07-07 12:55                             ` Phillip Lord
2016-07-07 13:04                               ` Andreas Schwab
2016-07-07 16:24                                 ` Phillip Lord
2016-07-07 13:15                               ` Noam Postavsky
2016-07-07 16:28                                 ` Phillip Lord
2016-07-07 15:25                           ` Eli Zaretskii
2016-07-07 17:24                             ` Phillip Lord
2016-07-07 19:57                               ` Eli Zaretskii
2016-07-07 23:50                                 ` Dmitry Gutov
2016-07-08 11:28                                 ` Phillip Lord
2016-07-08 13:56                                   ` Eli Zaretskii
2016-07-08 13:27                                 ` Ted Zlatanov
2016-07-08 14:06                                   ` Eli Zaretskii
2016-07-08 14:22                                     ` Ted Zlatanov
2016-07-08 14:29                                       ` Eli Zaretskii
2016-07-08 14:49                                         ` Ted Zlatanov
2016-07-08 15:18                                           ` Eli Zaretskii
2016-07-08 16:04                                             ` Ted Zlatanov
2016-07-08 14:29                                     ` Óscar Fuentes
2016-07-08 14:13                                   ` Óscar Fuentes
2016-07-08 14:27                                     ` Eli Zaretskii
2016-07-09 16:54                                   ` Richard Stallman
2016-07-09 17:04                                     ` Eli Zaretskii
2016-07-09 22:55                                     ` Ted Zlatanov
2016-07-10 14:25                                       ` Richard Stallman
2016-07-11 13:28                                         ` auto-generating skeleton ChangeLogs (was: Is it time to drop ChangeLogs?) Ted Zlatanov
2016-07-12 13:49                                           ` auto-generating skeleton ChangeLogs Ted Zlatanov
2016-07-13  3:29                                             ` Stefan Monnier
2016-07-11 11:29                                     ` Is it time to drop ChangeLogs? Phillip Lord
2016-07-12  5:08                                       ` Richard Stallman
2016-07-20 13:28                                   ` debbugs tracker builds character (was: Is it time to drop ChangeLogs?) Ted Zlatanov
2016-07-20 13:44                                     ` debbugs tracker builds character Lars Ingebrigtsen
2016-07-20 13:52                                       ` Dmitry Gutov
2016-07-20 14:58                                         ` Michael Albinus
2016-07-20 19:05                                           ` Dmitry Gutov
2016-07-20 19:48                                             ` Michael Albinus
2016-07-20 20:06                                               ` Robert Weiner
2016-07-20 20:24                                                 ` Michael Albinus
2016-07-21 10:54                                                   ` Lars Ingebrigtsen
2016-07-22 10:50                                                   ` Lars Ingebrigtsen
2016-07-20 20:38                                               ` Dmitry Gutov
2016-07-21  6:27                                                 ` Michael Albinus
2016-07-21 11:03                                                   ` Dmitry Gutov
2016-07-21 12:42                                                     ` Michael Albinus
2016-07-21 12:46                                                       ` Dmitry Gutov
2016-07-21 13:02                                                         ` Michael Albinus
2016-07-20 14:53                                     ` Michael Albinus
2016-07-20 14:57                                       ` Robert Weiner
2016-07-20 18:48                                         ` Michael Albinus
2016-07-21 14:13                                           ` Ted Zlatanov
2016-07-21 14:50                                             ` Eli Zaretskii
2016-07-21 15:17                                               ` Ted Zlatanov
2016-07-21 15:41                                                 ` David Engster
2016-07-21 15:58                                                 ` Eli Zaretskii
2016-07-21 23:49                                                 ` Richard Stallman
2016-07-21 23:54                                                   ` Dmitry Gutov
2016-07-22 14:35                                                   ` Ted Zlatanov
2016-07-23 19:54                                                     ` Richard Stallman
2016-07-25 12:52                                                       ` Ted Zlatanov
2016-07-25 16:51                                                         ` Eli Zaretskii
2016-07-26 14:22                                                           ` Ted Zlatanov
2016-07-21 15:38                                             ` Stefan Monnier
2016-07-21 16:42                                               ` Ted Zlatanov
2016-07-21 20:11                                               ` Eric Abrahamsen
2016-07-22 10:50                                                 ` Eric Abrahamsen
2016-07-22 19:17                                                 ` Stefan Monnier
2016-07-23 16:18                                                   ` Eric Abrahamsen
2016-07-23 17:35                                                     ` Stefan Monnier
2016-07-23 23:07                                                       ` Eric Abrahamsen
2016-07-24 16:21                                                         ` Stefan Monnier
2016-07-24 21:20                                                           ` Eric Abrahamsen
2016-07-24 21:40                                                             ` Stefan Monnier
2016-07-24 23:04                                                               ` Eric Abrahamsen
2017-03-13  0:22                                                                 ` [ELPA] I regret using subtree (was: debbugs tracker builds character) Eric Abrahamsen
2017-03-13  0:53                                                                   ` [ELPA] I regret using subtree Stefan Monnier
2017-03-13  2:18                                                                     ` Eric Abrahamsen
2017-03-13 10:01                                                                       ` Tino Calancha [this message]
2017-03-13 13:46                                                                         ` Stefan Monnier
2017-03-13 14:30                                                                           ` Michael Albinus
2017-03-13 14:34                                                                             ` Tino Calancha
2017-03-13  7:06                                                                   ` Thien-Thi Nguyen
2017-03-13  7:49                                                                     ` Eric Abrahamsen
2016-07-20 15:31                                       ` debbugs tracker builds character Ted Zlatanov
2016-07-20 16:56                                         ` Stefan Monnier
2016-07-20 17:54                                           ` Ted Zlatanov
2016-07-20 19:03                                             ` Dmitry Gutov
2016-07-20 20:40                                             ` Stefan Monnier
2016-07-20 19:30                                           ` Dmitry Gutov
2016-07-20 20:43                                             ` Stefan Monnier
2016-07-21 10:37                                               ` Lars Ingebrigtsen
2016-07-21 12:23                                                 ` Michael Albinus
2016-07-21 12:37                                                   ` Lars Ingebrigtsen
2016-07-21 12:46                                                     ` Michael Albinus
2016-07-22 10:18                                                     ` Michael Albinus
2016-07-22 10:21                                                       ` Lars Ingebrigtsen
2016-07-22 11:47                                                       ` Michael Albinus
2016-07-31  9:42                                                       ` Michael Albinus
2016-07-21 21:39                                               ` Dmitry Gutov
2016-07-21 21:51                                                 ` Stefan Monnier
2016-07-21  5:50                                           ` Christian Kruse
2016-07-20 19:34                                         ` Michael Albinus
2016-07-20 21:25                                       ` Eric Abrahamsen
2016-07-21 10:41                                         ` Lars Ingebrigtsen
2016-07-21 12:33                                           ` Eric Abrahamsen
2016-07-21 12:34                                           ` Michael Albinus
2016-07-07 12:46                   ` Is it time to drop ChangeLogs? Alan Mackenzie
2016-07-07 13:01                     ` Phillip Lord
2016-07-07 13:57                       ` Alan Mackenzie
2016-07-07 16:39                         ` Phillip Lord
2016-07-07 21:56                   ` Richard Stallman
2016-07-08 12:16                     ` Phillip Lord
2016-07-09 16:55                       ` Richard Stallman
2016-07-13  6:45                         ` Andreas Röhler
2016-07-13 12:37                         ` Stefan Monnier
2016-07-13 13:12                           ` Robert Weiner
2016-07-13 13:43                             ` Stefan Monnier
2016-07-13 14:17                               ` Robert Weiner
2016-07-13 15:15                                 ` Stefan Monnier
2016-07-13 14:56                           ` Eli Zaretskii
2016-07-13 15:33                             ` Stefan Monnier
2016-07-13 15:36                               ` Robert Weiner
2016-07-13 15:47                                 ` Stefan Monnier
2016-07-13 16:54                                   ` Robert Weiner
2016-07-13 16:59                                     ` Stefan Monnier
2016-07-13 17:47                                     ` Sven Axelsson
2016-07-14 11:56                             ` Phillip Lord
2016-07-14 15:15                               ` Eli Zaretskii
2016-07-15 15:09                               ` Richard Stallman
2016-07-14 16:05                           ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87inndlcl2.fsf@calancha-pc \
    --to=tino.calancha@gmail.com \
    --cc=emacs-devel@gnu.org \
    --cc=eric@ericabrahamsen.net \
    --cc=monnier@iro.umontreal.ca \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).