unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Releasing Emacs 26.1
@ 2018-05-06 19:52 Eli Zaretskii
  2018-05-06 21:00 ` Alan Third
                   ` (5 more replies)
  0 siblings, 6 replies; 31+ messages in thread
From: Eli Zaretskii @ 2018-05-06 19:52 UTC (permalink / raw)
  To: John Wiegley; +Cc: emacs-devel

Any objections to releasing Emacs 26.1 in a week's time, anyone?



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-06 19:52 Releasing Emacs 26.1 Eli Zaretskii
@ 2018-05-06 21:00 ` Alan Third
  2018-05-07  1:21   ` Basil L. Contovounesios
  2018-05-07 17:42   ` Eli Zaretskii
  2018-05-07  0:13 ` Phil Sainty
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 31+ messages in thread
From: Alan Third @ 2018-05-06 21:00 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: John Wiegley, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 249 bytes --]

On Sun, May 06, 2018 at 10:52:15PM +0300, Eli Zaretskii wrote:
> Any objections to releasing Emacs 26.1 in a week's time, anyone?

None from me as long as I can apply the attached patch for a crash bug
I just discovered this evening.
-- 
Alan Third

[-- Attachment #2: 0001-Check-NSWindow-is-actually-a-frame.patch --]
[-- Type: text/plain, Size: 1047 bytes --]

From e9368809ed26240d3c23d2c9d8946a896a7acfa0 Mon Sep 17 00:00:00 2001
From: Alan Third <alan@idiocy.org>
Date: Sun, 6 May 2018 21:49:31 +0100
Subject: [PATCH] Check NSWindow is actually a frame

* src/nsfns.m (Fns_frame_list_z_order): Check NSWindow is an instance
of EmacsView before treating it as one.
---
 src/nsfns.m | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/nsfns.m b/src/nsfns.m
index 7f2f060dda..34a7e38c76 100644
--- a/src/nsfns.m
+++ b/src/nsfns.m
@@ -1497,7 +1497,8 @@ Frames are listed from topmost (first) to bottommost (last).  */)
       Lisp_Object frame;
 
       /* Check against [win parentWindow] so that it doesn't match itself. */
-      if (parent == nil || ns_window_is_ancestor (parent, [win parentWindow]))
+      if ([[win delegate] isKindOfClass:[EmacsView class]]
+          && parent == nil || ns_window_is_ancestor (parent, [win parentWindow]))
         {
           XSETFRAME (frame, ((EmacsView *)[win delegate])->emacsframe);
           frames = Fcons(frame, frames);
-- 
2.16.1


^ permalink raw reply related	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-06 19:52 Releasing Emacs 26.1 Eli Zaretskii
  2018-05-06 21:00 ` Alan Third
@ 2018-05-07  0:13 ` Phil Sainty
  2018-05-07  7:32   ` Michael Albinus
  2018-05-07 17:44   ` Eli Zaretskii
  2018-05-07  5:30 ` John Wiegley
                   ` (3 subsequent siblings)
  5 siblings, 2 replies; 31+ messages in thread
From: Phil Sainty @ 2018-05-07  0:13 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: John Wiegley, Emacs-devel, emacs-devel

I was imagining there'd be a rc2 before the release so that more
people could confirm fixes made to rc1; but I don't have a feel for
the number and status/severity of bug reports and fixes made, so
I don't have any particular justification / objection.

#31355 is the only thing I'm involved in that I'd want to ensure
was included as, while it's minor, it's a regression from 25.
I need to follow up on Michael's last reply, but I can certainly
do that this week.

-Phil




^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-06 21:00 ` Alan Third
@ 2018-05-07  1:21   ` Basil L. Contovounesios
  2018-05-07 12:31     ` Alan Third
  2018-05-07 17:42   ` Eli Zaretskii
  1 sibling, 1 reply; 31+ messages in thread
From: Basil L. Contovounesios @ 2018-05-07  1:21 UTC (permalink / raw)
  To: Alan Third; +Cc: Eli Zaretskii, John Wiegley, emacs-devel

Alan Third <alan@idiocy.org> writes:

> On Sun, May 06, 2018 at 10:52:15PM +0300, Eli Zaretskii wrote:
>> Any objections to releasing Emacs 26.1 in a week's time, anyone?
>
> None from me as long as I can apply the attached patch for a crash bug
> I just discovered this evening.

Which, to the completely untrained eye, looks like it would go nicely
with bug#31373.

-- 
Basil



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-06 19:52 Releasing Emacs 26.1 Eli Zaretskii
  2018-05-06 21:00 ` Alan Third
  2018-05-07  0:13 ` Phil Sainty
@ 2018-05-07  5:30 ` John Wiegley
  2018-05-07  5:40 ` Bastien
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 31+ messages in thread
From: John Wiegley @ 2018-05-07  5:30 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: emacs-devel

>>>>> Eli Zaretskii <eliz@gnu.org> writes:

> Any objections to releasing Emacs 26.1 in a week's time, anyone?

None at all! Congrats.

-- 
John Wiegley                  GPG fingerprint = 4710 CF98 AF9B 327B B80F
http://newartisans.com                          60E1 46C4 BD1A 7AC1 4BA2



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-06 19:52 Releasing Emacs 26.1 Eli Zaretskii
                   ` (2 preceding siblings ...)
  2018-05-07  5:30 ` John Wiegley
@ 2018-05-07  5:40 ` Bastien
  2018-05-07 19:05   ` Eli Zaretskii
  2018-05-08  7:06 ` Byung-Hee HWANG (황병희, 黃炳熙)
  2018-05-20 13:56 ` Alan Mackenzie
  5 siblings, 1 reply; 31+ messages in thread
From: Bastien @ 2018-05-07  5:40 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: John Wiegley, Rasmus Pank Roulund, emacs-devel

Hi Eli,

Eli Zaretskii <eliz@gnu.org> writes:

> Any objections to releasing Emacs 26.1 in a week's time, anyone?

If these four Org bugfixes (9.1.13) can make it, that'd be great:

  064caac ox-html: Make use of :html-preamble/postamble-format
  631c4b7 org-src: Clear overlay in Org buffer after major mode change
  80eb69b org-list: Proper error message when trying to indent top level item
  388254e Revert "org.el: Fix bug when links contain special characters"

Not a stopper, though.

Thanks everyone for all the hard work -- and congrats!

-- 
 Bastien



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07  0:13 ` Phil Sainty
@ 2018-05-07  7:32   ` Michael Albinus
  2018-05-07 11:10     ` Phil Sainty
  2018-05-07 17:44   ` Eli Zaretskii
  1 sibling, 1 reply; 31+ messages in thread
From: Michael Albinus @ 2018-05-07  7:32 UTC (permalink / raw)
  To: Phil Sainty; +Cc: Eli Zaretskii, John Wiegley, Emacs-devel, emacs-devel

Phil Sainty <psainty@orcon.net.nz> writes:

Hi Phil,

> #31355 is the only thing I'm involved in that I'd want to ensure
> was included as, while it's minor, it's a regression from 25.
> I need to follow up on Michael's last reply, but I can certainly
> do that this week.

I don't see that this bug is a release stopper. In comparision, there
are more severe Tramp bugs I didn't commit to the release branch in
order to not destabilize it. They are waiting for Emacs 26.2.

> -Phil

Best regards, Michael.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07  7:32   ` Michael Albinus
@ 2018-05-07 11:10     ` Phil Sainty
  2018-05-07 11:29       ` Michael Albinus
                         ` (2 more replies)
  0 siblings, 3 replies; 31+ messages in thread
From: Phil Sainty @ 2018-05-07 11:10 UTC (permalink / raw)
  To: Michael Albinus; +Cc: Eli Zaretskii, John Wiegley, Emacs-devel, emacs-devel

On 2018-05-07 19:32, Michael Albinus wrote:
> Phil Sainty <psainty@orcon.net.nz> writes:
>> #31355 is the only thing I'm involved in that I'd want to ensure
>> was included as, while it's minor, it's a regression from 25.
> 
> I don't see that this bug is a release stopper. In comparision, there
> are more severe Tramp bugs I didn't commit to the release branch in
> order to not destabilize it. They are waiting for Emacs 26.2.

If the bugs are in new functionality, I wouldn't see any issue with
leaving the improvements until the next release if necessary; but
I would have thought known regressions to behaviour which was working
properly in the previous stable release would be worth delaying the
new release to fix, if necessary.

I suppose I don't understand why there's any hurry to release 26.1.

-Phil




^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07 11:10     ` Phil Sainty
@ 2018-05-07 11:29       ` Michael Albinus
  2018-05-07 15:08         ` Nicolas Petton
  2018-05-07 18:09         ` Eli Zaretskii
  2018-05-07 11:44       ` Van L
  2018-05-07 18:08       ` Eli Zaretskii
  2 siblings, 2 replies; 31+ messages in thread
From: Michael Albinus @ 2018-05-07 11:29 UTC (permalink / raw)
  To: Phil Sainty
  Cc: Eli Zaretskii, John Wiegley, Nicolas Petton, Emacs-devel,
	emacs-devel

Phil Sainty <psainty@orcon.net.nz> writes:

Hi Phil,

> If the bugs are in new functionality, I wouldn't see any issue with
> leaving the improvements until the next release if necessary; but
> I would have thought known regressions to behaviour which was working
> properly in the previous stable release would be worth delaying the
> new release to fix, if necessary.
>
> I suppose I don't understand why there's any hurry to release 26.1.

Because it wouldn't be released ever, otherwise. The Emacs bug tracker
contains 1742 open bugs in state "serious,important,normal" as of
today. I bet there are many open bugs we could apply the same reasoning
as you have given above.

Emacs 26.1 is in code-freeze. Bug#31355 does not block Emacs 26.1, and a
workaround (your patch) does exist. So I don't believe this bug shall
stop the release.

But I'm neither the maintainer nor the release manager, which will
decide. Eli? John? Nico?

> -Phil

Best regards, Michael.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07 11:10     ` Phil Sainty
  2018-05-07 11:29       ` Michael Albinus
@ 2018-05-07 11:44       ` Van L
  2018-05-07 12:05         ` Bastien
  2018-05-07 18:08       ` Eli Zaretskii
  2 siblings, 1 reply; 31+ messages in thread
From: Van L @ 2018-05-07 11:44 UTC (permalink / raw)
  To: Phil Sainty; +Cc: Eli Zaretskii, John Wiegley, Michael Albinus, emacs-devel


> On 7 May 2018, at 21:10, Phil Sainty <psainty@orcon.net.nz> wrote:
> 
> If the bugs are in new functionality, I wouldn't see any issue with
> leaving the improvements until the next release if necessary;

In org mode for Emacs 26.1 rc-1, I see comment alignment for cpp not lining up, see screenshot. 

http://emacs.scratch.space/public/org-mode-cpp.png

The problem line has `int i = 7;’. 

Its comment isn’t lining up with the one line above and the two below.

`M-x align-regexp’ on `//‘ was applied to the four lines not in the zoomed in (C-c ‘) abbrev view. Then, going into the abbrev view sees the alignment not lining up.







^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07 11:44       ` Van L
@ 2018-05-07 12:05         ` Bastien
  0 siblings, 0 replies; 31+ messages in thread
From: Bastien @ 2018-05-07 12:05 UTC (permalink / raw)
  To: Van L
  Cc: Phil Sainty, Eli Zaretskii, John Wiegley, Michael Albinus,
	emacs-devel

Hi,

Van L <van@scratch.space> writes:

>> On 7 May 2018, at 21:10, Phil Sainty <psainty@orcon.net.nz> wrote:
>> 
>> If the bugs are in new functionality, I wouldn't see any issue with
>> leaving the improvements until the next release if necessary;
>
> In org mode for Emacs 26.1 rc-1, I see comment alignment for cpp not
> lining up, see screenshot.

I cannot reproduce this bug with Emacs 26.1 rc-1 and Org 9.1.12.

Can you send it to emacs-orgmode@gnu.org and provide a detailed recipe
on how to reproduce it with emacs -Q?

Thanks,

-- 
 Bastien



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07  1:21   ` Basil L. Contovounesios
@ 2018-05-07 12:31     ` Alan Third
  2018-05-07 12:46       ` Basil L. Contovounesios
  0 siblings, 1 reply; 31+ messages in thread
From: Alan Third @ 2018-05-07 12:31 UTC (permalink / raw)
  To: Eli Zaretskii, John Wiegley, emacs-devel

On Mon, May 07, 2018 at 02:21:05AM +0100, Basil L. Contovounesios wrote:
> Alan Third <alan@idiocy.org> writes:
> 
> > On Sun, May 06, 2018 at 10:52:15PM +0300, Eli Zaretskii wrote:
> >> Any objections to releasing Emacs 26.1 in a week's time, anyone?
> >
> > None from me as long as I can apply the attached patch for a crash bug
> > I just discovered this evening.
> 
> Which, to the completely untrained eye, looks like it would go nicely
> with bug#31373.

It’s similar, but different. I actually only found it because I went
to check I hadn’t made a similar mistake, though.

My case only crashes if there’s a tooltip showing when the function
runs, because on NS tooltips are full‐blown NSWindows, but not Emacs
frames.
-- 
Alan Third



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07 12:31     ` Alan Third
@ 2018-05-07 12:46       ` Basil L. Contovounesios
  0 siblings, 0 replies; 31+ messages in thread
From: Basil L. Contovounesios @ 2018-05-07 12:46 UTC (permalink / raw)
  To: Alan Third; +Cc: Eli Zaretskii, John Wiegley, emacs-devel

Alan Third <alan@idiocy.org> writes:

> On Mon, May 07, 2018 at 02:21:05AM +0100, Basil L. Contovounesios wrote:
>> Alan Third <alan@idiocy.org> writes:
>> 
>> > On Sun, May 06, 2018 at 10:52:15PM +0300, Eli Zaretskii wrote:
>> >> Any objections to releasing Emacs 26.1 in a week's time, anyone?
>> >
>> > None from me as long as I can apply the attached patch for a crash bug
>> > I just discovered this evening.
>> 
>> Which, to the completely untrained eye, looks like it would go nicely
>> with bug#31373.
>
> It’s similar, but different. I actually only found it because I went
> to check I hadn’t made a similar mistake, though.
>
> My case only crashes if there’s a tooltip showing when the function
> runs, because on NS tooltips are full‐blown NSWindows, but not Emacs
> frames.

Indeed; I meant only that it would be nice to have both issues fixed in
the same Emacs release, seeing as they materialise in similar functions.

-- 
Basil



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07 11:29       ` Michael Albinus
@ 2018-05-07 15:08         ` Nicolas Petton
  2018-05-07 18:09         ` Eli Zaretskii
  1 sibling, 0 replies; 31+ messages in thread
From: Nicolas Petton @ 2018-05-07 15:08 UTC (permalink / raw)
  To: Michael Albinus, Phil Sainty
  Cc: Eli Zaretskii, John Wiegley, Emacs-devel, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 202 bytes --]

Michael Albinus <michael.albinus@gmx.de> writes:

> But I'm neither the maintainer nor the release manager, which will
> decide. Eli? John? Nico?

I agree, but Eli and John should decide.

Cheers,
Nico

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-06 21:00 ` Alan Third
  2018-05-07  1:21   ` Basil L. Contovounesios
@ 2018-05-07 17:42   ` Eli Zaretskii
  1 sibling, 0 replies; 31+ messages in thread
From: Eli Zaretskii @ 2018-05-07 17:42 UTC (permalink / raw)
  To: Alan Third; +Cc: johnw, emacs-devel

> Date: Sun, 6 May 2018 22:00:13 +0100
> From: Alan Third <alan@idiocy.org>
> Cc: John Wiegley <johnw@gnu.org>, emacs-devel@gnu.org
> 
> > Any objections to releasing Emacs 26.1 in a week's time, anyone?
> 
> None from me as long as I can apply the attached patch for a crash bug
> I just discovered this evening.

If you are reasonably sure this change cannot be worse than the bug it
attempts to fix, it's fine with me to push to the release branch.

Thanks.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07  0:13 ` Phil Sainty
  2018-05-07  7:32   ` Michael Albinus
@ 2018-05-07 17:44   ` Eli Zaretskii
  1 sibling, 0 replies; 31+ messages in thread
From: Eli Zaretskii @ 2018-05-07 17:44 UTC (permalink / raw)
  To: Phil Sainty; +Cc: johnw, emacs-devel-bounces+psainty=orcon.net.nz, emacs-devel

> Date: Mon, 07 May 2018 12:13:51 +1200
> From: Phil Sainty <psainty@orcon.net.nz>
> Cc: John Wiegley <johnw@gnu.org>, emacs-devel@gnu.org, Emacs-devel
>  <emacs-devel-bounces+psainty=orcon.net.nz@gnu.org>
> 
> #31355 is the only thing I'm involved in that I'd want to ensure
> was included as, while it's minor, it's a regression from 25.
> I need to follow up on Michael's last reply, but I can certainly
> do that this week.

AFAIU, there's no agreed-to solution yet, so it's premature to discuss
whether it can be pushed to emacs-26.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07 11:10     ` Phil Sainty
  2018-05-07 11:29       ` Michael Albinus
  2018-05-07 11:44       ` Van L
@ 2018-05-07 18:08       ` Eli Zaretskii
  2 siblings, 0 replies; 31+ messages in thread
From: Eli Zaretskii @ 2018-05-07 18:08 UTC (permalink / raw)
  To: Phil Sainty; +Cc: johnw, michael.albinus, emacs-devel

> Date: Mon, 07 May 2018 23:10:57 +1200
> From: Phil Sainty <psainty@orcon.net.nz>
> Cc: Eli Zaretskii <eliz@gnu.org>, John Wiegley <johnw@gnu.org>, Emacs-devel
>  <emacs-devel-bounces+psainty=orcon.net.nz@gnu.org>, emacs-devel@gnu.org
> 
> I suppose I don't understand why there's any hurry to release 26.1.

There's no hurry.  Which is why we were pretesting it since the last
September.  At some point we'd like to actually release it.  (I
originally hoped to be able to do that much earlier, around December.)



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07 11:29       ` Michael Albinus
  2018-05-07 15:08         ` Nicolas Petton
@ 2018-05-07 18:09         ` Eli Zaretskii
  1 sibling, 0 replies; 31+ messages in thread
From: Eli Zaretskii @ 2018-05-07 18:09 UTC (permalink / raw)
  To: Michael Albinus; +Cc: psainty, nicolas, johnw, emacs-devel

> From: Michael Albinus <michael.albinus@gmx.de>
> Cc: Eli Zaretskii <eliz@gnu.org>,  John Wiegley <johnw@gnu.org>,  Nicolas Petton <nicolas@petton.fr>, Emacs-devel <emacs-devel-bounces+psainty=orcon.net.nz@gnu.org>,  emacs-devel@gnu.org
> Date: Mon, 07 May 2018 13:29:39 +0200
> 
> > I suppose I don't understand why there's any hurry to release 26.1.
> 
> Because it wouldn't be released ever, otherwise.

Right, there's always one more bug.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07  5:40 ` Bastien
@ 2018-05-07 19:05   ` Eli Zaretskii
  2018-05-07 22:06     ` Rasmus
  0 siblings, 1 reply; 31+ messages in thread
From: Eli Zaretskii @ 2018-05-07 19:05 UTC (permalink / raw)
  To: Bastien; +Cc: johnw, rasmus, emacs-devel

> From: Bastien <bzg@gnu.org>
> Cc: John Wiegley <johnw@gnu.org>,  emacs-devel@gnu.org, Rasmus Pank Roulund <rasmus@gmx.us>
> Date: Mon, 07 May 2018 07:40:37 +0200
> 
> If these four Org bugfixes (9.1.13) can make it, that'd be great:
> 
>   064caac ox-html: Make use of :html-preamble/postamble-format
>   631c4b7 org-src: Clear overlay in Org buffer after major mode change
>   80eb69b org-list: Proper error message when trying to indent top level item
>   388254e Revert "org.el: Fix bug when links contain special characters"

The last 2 are okay for the release branch.  The other two I'm not
comfortable enough to risk, sorry.  (They don't seem ti be critical,
are they?)

Thanks.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07 19:05   ` Eli Zaretskii
@ 2018-05-07 22:06     ` Rasmus
  2018-05-08  2:28       ` Eli Zaretskii
  0 siblings, 1 reply; 31+ messages in thread
From: Rasmus @ 2018-05-07 22:06 UTC (permalink / raw)
  To: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 3349 bytes --]

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Bastien <bzg@gnu.org>
>> Cc: John Wiegley <johnw@gnu.org>,  emacs-devel@gnu.org, Rasmus Pank Roulund <rasmus@gmx.us>
>
>> Date: Mon, 07 May 2018 07:40:37 +0200
>> 
>> If these four Org bugfixes (9.1.13) can make it, that'd be great:
>> 
>>   064caac ox-html: Make use of :html-preamble/postamble-format
>>   631c4b7 org-src: Clear overlay in Org buffer after major mode change
>>   80eb69b org-list: Proper error message when trying to indent top level item
>>   388254e Revert "org.el: Fix bug when links contain special characters"
>
> The last 2 are okay for the release branch.  The other two I'm not
> comfortable enough to risk, sorry.  (They don't seem ti be critical,
> are they?)

Here’s a full list of the changes not merged, with a detailed changelog
attached.  I am not really sure how to "pick" changes to port.  But as I
wrote in another message, will it be able to add these to a subsequent
minor release (26.1.1, say?)

Rasmus

     064caac93 ox-html: Make use of :html-preamble/postamble-format
     631c4b703 org-src: Clear overlay in Org buffer after major mode change
     80eb69b64 org-list: Proper error message when trying to indent top level item
     388254e0d Revert "org.el: Fix bug when links contain special characters"
     5d0792057 Fix commit f21fb8a
     8b6e5d5f2 Revert "org-agenda.el: Fix bug when getting the warning delay of a deadline"
     6cd224e83 Merge branch 'maint' of code.orgmode.org:bzg/org-mode into maint
     f21fb8ad3 org-agenda.el: Fix bug when getting the warning delay of a deadline
     b1d084c1a org.el: Fix bug when links contain special characters
     407014e06 Fix default directory for git-annex checks
     2742211ec org-agenda.el: Fix bug when keyboard-quitting the match prompt
     8944b578b Remove agenda-archives even with buffer restriction
     e2e549523 Fix "(wrong-number-of-arguments max 0)" with fast tag selection
     4323db60c Fix typo in docstring
     0dc4ba22e org.texi: Document `org-agenda-search-headline-for-time'
     f1b43fe9e Fix multiple tag selection
     d13811cbc Backport commit 8f6293ca7 from Emacs
     cb63ccb78 org-capture: Fix error on capture abort
     c75c574d5 org-capture: Fix error when clipboard is empty
     5792f0687 ox-md: Tiny refactoring
     c6e5aa1da ox-md: Fix ToC on unnumbered headings
     14d3d59c4 Clarify `md' and `html' back-ends relationship
     8c3d4fbde Document `org-timestamp-up' and `org-timestamp-down' behavior
     8814988d1 Fix error message
     8b6a617ff Remove inlinetask END part from Agenda view
     1a1e47198 Fix `org-{w3m|eww}-copy-for-org-mode' on blank links
     1976c02af Fix docstring
     d20fc4d7c org-capture: Properly handle `org-extend-today-until' in templates
     575d66625 org-table: Fix alignment with long links
     f05c2eae3 Fix RET on multi-line links
     8e5d74ca4 ob-sed: Use -f instead of --file to support BSD sed
     befc92b9c org-agenda: Call `recenter' only if buffer has a window
     3e1f111c3 ob-python: Small refactoring
     1966d58b2 ob-python: Insert blank line when sending code to interpreter
     b1a6395df Backport commit 9bff405d0 from Emacs
     7240f9c84 org.texi: Fix typo in capture protocol example
     ab488dc43 org.el: Fix whitespace issue blocking upstream commit


-- 
History is what should never happen again

[-- Attachment #2: changes --]
[-- Type: text/plain, Size: 16209 bytes --]

commit 732aa477b031772c3694023cbf34eec6bdc08d61
Author: Kyle Meyer <kyle@kyleam.com>
Date:   Sun May 6 02:28:09 2018 -0400

    Update version keyword

commit 064caac937acdf3f7993ff459feffaba7bef7d7d
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Fri May 4 00:24:36 2018 +0200

    ox-html: Make use of :html-preamble/postamble-format
    
    * lisp/ox-html.el (org-html--build-pre/postamble): Use
    `:html-preamble-format' and `:html-postamble-format' instead of
    relying on the global variables.
    
    Reported-by: Brady Trainor <mail@bradyt.com>
    <http://lists.gnu.org/r/emacs-orgmode/2018-05/msg00073.html>

commit 631c4b703e78e011481b5d045e0bb552a6143e00
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Wed May 2 23:52:35 2018 +0200

    org-src: Clear overlay in Org buffer after major mode change
    
    * lisp/org-src.el (org-src--allow-write-back):
    (org-src--auto-save-timer):
    (org-src--babel-info):
    (org-src--beg-marker):
    (org-src--block-indentation):
    (org-src--end-marker):
    (org-src--from-org-mode):
    (org-src--overlay):
    (org-src--preserve-indentation):
    (org-src--remote):
    (org-src--saved-temp-window-config):
    (org-src--source-type):
    (org-src--tab-width): Define as local and permanent variable.
    
    (org-src--edit-element):
    (org-edit-src-code):
    (org-edit-inline-src-code): Use `setq' instead of `setq-local'.
    
    When major mode is changed in an edit buffer, the variables above
    would be cleared and the overlay in the source buffer could not be
    removed anymore.

commit 80eb69b6484aee61779aeb6ad59efca939b7a460
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Tue May 1 15:02:52 2018 +0200

    org-list: Proper error message when trying to indent top level item
    
    * lisp/org-list.el (org-list-struct-indent): Return proper error
      message upon trying to indent a top-level item.  Use `user-error'.
    * testing/lisp/test-org-list.el (test-org-list/indent-item): Add test.

commit 388254e0d0dcebafa2e2de970da96a2b08179444
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Fri Apr 27 17:12:18 2018 +0200

    Revert "org.el: Fix bug when links contain special characters"
    
    This reverts commit b1d084c1ab877a58b342ae4a8b8d844b9b54e625.
    
    The fix introduces a bug where `org-edit-special' throws an error on
    INCLUDE keywords.

commit e8c40b7a07a4a861d4dac77427cf0f8809824a80
Author: Bastien <bzg@gnu.org>
Date:   Fri Apr 27 12:31:13 2018 +0200

    org.el: Update version keyword to 9.1.12
    
    Thanks to Nicolas for reminding me.

commit 5d0792057dea013e9980e3e10de2806c5751c4b3
Author: Bastien <bzg@gnu.org>
Date:   Fri Apr 27 03:17:12 2018 +0200

    Fix commit f21fb8a

commit 8b6e5d5f2e06231798a1a29c61243ac3f796f001
Author: Bastien <bzg@gnu.org>
Date:   Fri Apr 27 03:09:28 2018 +0200

    Revert "org-agenda.el: Fix bug when getting the warning delay of a deadline"
    
    This reverts commit f21fb8ad3b47409d5f86dbcff7c5d420c8503fbf.

commit 6cd224e83341d2a6791249b7c3230e2456522a5a
Merge: f21fb8ad3 e2e549523
Author: Bastien <bzg@gnu.org>
Date:   Fri Apr 27 01:27:15 2018 +0200

    Merge branch 'maint' of code.orgmode.org:bzg/org-mode into maint

commit f21fb8ad3b47409d5f86dbcff7c5d420c8503fbf
Author: Bastien <bzg@gnu.org>
Date:   Thu Apr 26 22:59:36 2018 +0200

    org-agenda.el: Fix bug when getting the warning delay of a deadline
    
    * lisp/org-agenda.el (org-agenda-get-deadlines): Fix bug when
    getting the warning delay of a deadline.
    
    Thanks to Alex Branham for reporting this.

commit b1d084c1ab877a58b342ae4a8b8d844b9b54e625
Author: Bastien <bzg@gnu.org>
Date:   Thu Apr 26 21:52:39 2018 +0200

    org.el: Fix bug when links contain special characters
    
    * lisp/org.el (org-open-link-from-string): Fix bug when links
    contain special characters.
    
    Thanks to Joon Ro for reporting this.

commit 407014e0684796862a1b1d707717f4fdbdccc7da
Author: Matt Lundin <mdl@imapmail.org>
Date:   Sun Mar 25 22:11:09 2018 -0500

    Fix default directory for git-annex checks
    
    * lisp/org-attach.el: (org-attach-annex-get-maybe) Ensure shell
      command that checks whether a git-annex file exists is called from
      within the git-annex repository. Otherwise, it will result in an
      error.

commit 2742211ec69eebe5de8539b1825cf0049adc0d46
Author: Bastien <bzg@gnu.org>
Date:   Thu Apr 26 18:44:58 2018 +0200

    org-agenda.el: Fix bug when keyboard-quitting the match prompt
    
    * lisp/org-agenda.el (org-tags-view): Don't leave an empty
    *Org agenda* buffer when keyboard-quitting the match prompt.
    
    Thanks to Xu Chunyang for reporting this.

commit 8944b578b86dd3c16e568e905b43e5fa6cfa5e68
Author: Allen Li <darkfeline@felesatra.moe>
Date:   Sat Dec 30 03:41:51 2017 -0800

    Remove agenda-archives even with buffer restriction
    
    * lisp/org-agenda.el (org-search-view): Remove agenda-archives even
      with buffer restriction.

commit e2e5495239833034c27de6f21c496fa1b05f5d85
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Thu Apr 26 14:16:17 2018 +0200

    Fix "(wrong-number-of-arguments max 0)" with fast tag selection
    
    * lisp/org.el (org-fast-tag-selection): Fix
      "(wrong-number-of-arguments max 0)" error when setting tag and no
      tag is defined.

commit fd4ade40ed3ce135495796401296d318f2475352
Author: Martin Kampas <martin.kampas@ubedi.net>
Date:   Mon Apr 23 19:27:18 2018 +0200

    org-collector.el: Inhibit lisp evaluation of headlines
    
    * contrib/lisp/org-collector.el (org-propview-collect): Inhibit lisp
      evaluation of headlines
    
    This fixes org-collector usage for items starting with a hyperlink,
    which would be incorrectly treated as lisp code.

commit 4323db60c5786d708f7dac69a257c0340b372500
Author: Bastien <bzg@gnu.org>
Date:   Thu Apr 26 09:56:45 2018 +0200

    Fix typo in docstring
    
    * lisp/org-eww.el (org-eww-copy-for-org-mode): Fix typo in docstring.
    
    Thanks to Xu Chunyang <mail@xuchunyang.me> for reporting this.

commit 0dc4ba22e27c3747cf8c097f53703b0785a9b222
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Tue Apr 24 23:20:53 2018 +0200

    org.texi: Document `org-agenda-search-headline-for-time'
    
    * doc/org.texi (Time-of-day specifications): Document
      `org-agenda-search-headline-for-time'.
    
    Reported-by: Rohit Patnaik <quanticle@quanticle.net>
    <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00405.html>

commit f1b43fe9e65e33a0f734932b043e83fc2bfba583
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Mon Apr 23 15:24:23 2018 +0200

    Fix multiple tag selection
    
    * lisp/org.el (org--tag-add-to-alist): Preserve order when merging tag
      alists.  Remove duplicates only when they are outside a group.
      Rename from `org-tag-add-to-alist'.
    (org-set-regexps-and-options):
    (org-global-tags-completion-table):
    (org-make-tags-matcher):
    (org-set-tags):
    (org-change-tag-in-region):
    (org-agenda-prepare-buffers): Apply renaming.
    
    Reported-by: Alex Branham <alex.branham@gmail.com>
    <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00311.html>

commit e3b1c664e7ac23bf55abca8dd551d1cd928bc3a0
Author: Kyle Meyer <kyle@kyleam.com>
Date:   Sun Apr 22 11:09:36 2018 -0400

    Update version keyword

commit d13811cbc05cae1fb1e2288aa96f0becb68f6cc5
Author: Eli Zaretskii <eliz@gnu.org>
Date:   Thu Apr 19 12:21:06 2018 +0300

    Backport commit 8f6293ca7 from Emacs
    
    * doc/org.texi (Editing source code, Export settings)
    (Closing items, Drawers, Structure editing): Fix use of
    @key.  For the details, see
    http://lists.gnu.org/archive/html/emacs-devel/2018-04/msg00390.html.
    
    Fix use of @key in Texinfo manuals
    8f6293ca789edf06ea8e7b4b80edf7558d590ca7
    Eli Zaretskii
    Thu Apr 19 12:21:06 2018 +0300

commit cb63ccb78e43428503a1e6c4c877c4771b0cb527
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Sat Apr 21 15:21:25 2018 +0200

    org-capture: Fix error on capture abort
    
    * lisp/org-capture.el (org-capture-finalize): Do not set `abort-note'
      to `dirty' too easily.
    
    Reported-by: Brad Knotwell <bknotwell@yahoo.com>
    <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00183.html>

commit c75c574d580ca751e28881fcb6acc8a250adec88
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Sat Apr 21 11:25:46 2018 +0200

    org-capture: Fix error when clipboard is empty
    
    * lisp/org-capture.el (org-capture-fill-template): Fix "%x"
      placeholder when clipboard is empty.
    
    Reported-by: Brady Trainor <mail@bradyt.com>
    <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00328.html>

commit 5792f0687174a23bd5d5b2ab9013ca68520e0457
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Sat Apr 21 11:06:13 2018 +0200

    ox-md: Tiny refactoring
    
    * lisp/ox-md.el (org-md--build-toc): Tiny refactoring.

commit c6e5aa1da877911d8bd69a8a521cd3b1731d9650
Author: Yue Zhu <yuezhu3@gmail.com>
Date:   Fri Apr 20 10:49:44 2018 -0400

    ox-md: Fix ToC on unnumbered headings
    
    (org-md--build-toc): When exporting markdown with ToC, if heading
    numbering is not enabled, ToC will be shown as an unordered list.
    
    TINYCHANGE

commit 14d3d59c44c63e82048e3d6424119f0fe8a64999
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Fri Apr 20 11:11:52 2018 +0200

    Clarify `md' and `html' back-ends relationship
    
    * doc/org.texi (Markdown export): Reword.
    
    Reported-by: "Loris Bennett" <loris.bennett@fu-berlin.de>
    <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00303.html>

commit 8c3d4fbde7989484aa857451beac72b35a9c987c
Author: Andrew Eggenberger <andrew.eggenberger@gmail.com>
Date:   Mon Apr 16 19:07:41 2018 -0500

    Document `org-timestamp-up' and `org-timestamp-down' behavior
    
    * org.el (org-timestamp-up): Document undocumented behavior.
    (org-timestamp-up): The function changes the timestamp type when
    the point is on the enclosing bracket.  The documentation now
    reflects that behavior.
    
    * org.el (org-timestamp-down): Document undocumented behavior.
    (org-timestamp-down): The function changes the timestamp type when
    the point is on the enclosing bracket.  The documentation now
    reflects that behavior.
    
    TINYCHANGE

commit 8814988d1cdfb1612919f42d6498b8aea326b220
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Wed Apr 18 22:18:23 2018 +0200

    Fix error message
    
    * lisp/org.el (org-kill-line): Fix error message.

commit 8b6a617ff53b5713f2e65bae58eb913672cac5c8
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Mon Apr 16 13:44:52 2018 +0200

    Remove inlinetask END part from Agenda view
    
    * lisp/org-inlinetask.el (org-inlinetask-end-p): New function.
    (org-inlinetask-at-task-p):
    (org-inlinetask-in-task-p):
    (org-inlinetask-goto-beginning):
    (org-inlinetask-goto-end):
    * lisp/org.el (org-scan-tags): Use new function.
    
    Reported-by: Alain.Cochard@unistra.fr
    <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00235.html>

commit 1a1e47198f685697bd208ad4777cf6b0574c5b36
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Sat Apr 14 19:30:17 2018 +0200

    Fix `org-{w3m|eww}-copy-for-org-mode' on blank links
    
    * lisp/org-w3m.el (org-w3m-copy-for-org-mode):
    * lisp/org-eww.el (org-eww-copy-for-org-mode): Do not error when
      called on blank links.
    
    Reported-by: Bob Newell <bobnewell@bobnewell.net>
    <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00255.html>

commit 1976c02af0c5bbbc49ec9698ea40871093078a09
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Thu Apr 12 21:45:52 2018 +0200

    Fix docstring
    
    * lisp/org.el (org-file-apps): Fix regexp in docstring.

commit d20fc4d7c5973e2c07feb321f959471d946aff57
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Wed Apr 11 23:01:16 2018 +0200

    org-capture: Properly handle `org-extend-today-until' in templates
    
    * lisp/org-capture.el (org-capture-set-target-location): Handle
      non-default `org-extend-today-until'.
    
    Reported-by: Robert Irelan <rirelan@gmail.com>
    <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00023.html>

commit b7a7dd1492af2853ead064e8b1cf3094216c2147
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Wed Apr 11 21:42:46 2018 +0200

    Update version keyword

commit 1553aae9948ff8c664d20df04ff3580ecf947a42
Author: Jay Kamat <jaygkamat@gmail.com>
Date:   Mon Apr 9 21:47:58 2018 -0400

    org-notify: Fix an error in `org-notify-process' when unconfigured
    
    * contrib/lisp/org-notify.el (org-notify-todo-list): Return nil if
      `org-agenda-files' is nil.

commit 575d66625d13c34bbeae5f44d24235194cddd478
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Mon Apr 9 21:55:33 2018 +0200

    org-table: Fix alignment with long links
    
    * lisp/org-table.el (org-table-align): Fix alignment with long links.

commit f05c2eae3394afa5d8075ccac38b94163acda9e7
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Sun Apr 8 18:35:40 2018 +0200

    Fix RET on multi-line links
    
    * lisp/org.el (org-return): Follow multi-line links.
    * testing/lisp/test-org.el (test-org/return): Add tests.
    
    Reported-by: Brent Goodrick <bgoodr@gmail.com>
    <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00105.html>

commit 8e5d74ca4c132af4df2a6d330633809866f202b5
Author: Brad Knotwell <b.knotwell@f5.com>
Date:   Wed Apr 4 13:19:32 2018 +0200

    ob-sed: Use -f instead of --file to support BSD sed
    
    lisp/ob-sed.el (org-babel-execute:sed): Change file flag to "-f"
    instead of "--file" to support BSD sed as well.
    
    Signed-off-by: Bjarte Johansen <bjarte.johansen@gmail.com>

commit befc92b9c0b1837266e42c74c0fb7fc8f878b919
Author: Pierre Téchoueyres <pierre.techoueyres@free.fr>
Date:   Wed Mar 28 01:35:22 2018 +0200

    org-agenda: Call `recenter' only if buffer has a window
    
    * lisp/org-agenda.el (org-agenda-list): Condition the call to
      `recenter` only when the buffer has a window associated.
    
    This permit to call `org-agenda-list` in a `with-temp-buffer` like
    below:
    
    (with-temp-buffer
      (let ((org-agenda-sticky nil)
            (org-agenda-buffer-tmp-name (buffer-name)))
        (org-agenda-list 1)
        (buffer-string))

commit 3e1f111c3b862ebe7394377dd1d2c2b60a261c99
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Tue Apr 3 21:27:59 2018 +0200

    ob-python: Small refactoring
    
    * lisp/ob-python.el (org-babel-python-evaluate-session): Small
      refactoring.

commit 1966d58b253d0077025589c736b9223010682e17
Author: Gong Qijian <gongqijian@gmail.com>
Date:   Sun Apr 1 16:34:32 2018 +0800

    ob-python: Insert blank line when sending code to interpreter
    
    * lisp/ob-python.el (org-bable-python-evaluate-session):
    
    Syntax error occurs when evaluating the following code block:
    
    \#+begin_src python :session
    if True:
        1
    2
    \#+end_src
    
    A blank line is required for top level module code to end an indented block, such as a for loop, try/except, or if statement.
    
    https://www.python.org/dev/peps/pep-0008/#blank-line
    
    TINYCHANGE

commit b1a6395dfeadd9adc5ce7633f341dfbbb30bd39e
Author: Michael Albinus <michael.albinus@gmx.de>
Date:   Wed Mar 28 10:38:26 2018 +0200

    Backport commit 9bff405d0 from Emacs
    
    * doc/org.texi (Installation): Fix clone commands.
    
    9bff405d09f6eeeb577e6e0111e49f35d3b95b52
    Michael Albinus
    Wed Mar 28 10:38:26 2018 +0200

commit 7240f9c84769d92d9c95d1cae1f8c756b8ec74a0
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date:   Wed Mar 28 17:16:57 2018 +0200

    org.texi: Fix typo in capture protocol example
    
    * doc/org.texi (@code{capture} protocol): Add missing protocol.
    
    Reported-by: Буковская Агнесса <aggie@yandex.ru>
    <http://lists.gnu.org/r/emacs-orgmode/2018-03/msg00528.html>

commit ab488dc4383fa313b132988819f738afe314132e
Author: Rasmus <rasmus@gmx.us>
Date:   Tue Mar 27 23:33:35 2018 +0200

    org.el: Fix whitespace issue blocking upstream commit

^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-07 22:06     ` Rasmus
@ 2018-05-08  2:28       ` Eli Zaretskii
  0 siblings, 0 replies; 31+ messages in thread
From: Eli Zaretskii @ 2018-05-08  2:28 UTC (permalink / raw)
  To: Rasmus; +Cc: emacs-devel

> From: Rasmus <rasmus@gmx.us>
> Date: Tue, 08 May 2018 00:06:35 +0200
> 
> Here’s a full list of the changes not merged, with a detailed changelog
> attached.  I am not really sure how to "pick" changes to port.  But as I
> wrote in another message, will it be able to add these to a subsequent
> minor release (26.1.1, say?)

That would be 26.2, and yes, bugfixes will be welcome on the emacs-26
branch after 26.1 release.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-06 19:52 Releasing Emacs 26.1 Eli Zaretskii
                   ` (3 preceding siblings ...)
  2018-05-07  5:40 ` Bastien
@ 2018-05-08  7:06 ` Byung-Hee HWANG (황병희, 黃炳熙)
  2018-05-20 13:56 ` Alan Mackenzie
  5 siblings, 0 replies; 31+ messages in thread
From: Byung-Hee HWANG (황병희, 黃炳熙) @ 2018-05-08  7:06 UTC (permalink / raw)
  To: emacs-devel

In Article <83o9hsr28g.fsf@gnu.org>,
 Eli Zaretskii <eliz@gnu.org> writes:

> Any objections to releasing Emacs 26.1 in a week's time, anyone?

26.1 is my numbers. Thanks for work!

Sincerely, Byung-Hee.

-- 
^고맙습니다 _白衣從軍_ 감사합니다_^))//




^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-06 19:52 Releasing Emacs 26.1 Eli Zaretskii
                   ` (4 preceding siblings ...)
  2018-05-08  7:06 ` Byung-Hee HWANG (황병희, 黃炳熙)
@ 2018-05-20 13:56 ` Alan Mackenzie
  2018-05-20 15:48   ` Eli Zaretskii
  5 siblings, 1 reply; 31+ messages in thread
From: Alan Mackenzie @ 2018-05-20 13:56 UTC (permalink / raw)
  To: emacs-devel

Hello, Emacs.

On Sun, May 06, 2018 at 22:52:15 +0300, Eli Zaretskii wrote:
> Any objections to releasing Emacs 26.1 in a week's time, anyone?

That was two weeks ago.  Any chance of a quick summary from somebody of
where we are wrt the release?

-- 
Alan Mackenzie (Nuremberg, Germany).



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-20 13:56 ` Alan Mackenzie
@ 2018-05-20 15:48   ` Eli Zaretskii
  2018-05-20 19:14     ` Alan Mackenzie
  0 siblings, 1 reply; 31+ messages in thread
From: Eli Zaretskii @ 2018-05-20 15:48 UTC (permalink / raw)
  To: Alan Mackenzie; +Cc: emacs-devel

> Date: Sun, 20 May 2018 13:56:34 +0000
> From: Alan Mackenzie <acm@muc.de>
> 
> > Any objections to releasing Emacs 26.1 in a week's time, anyone?
> 
> That was two weeks ago.  Any chance of a quick summary from somebody of
> where we are wrt the release?

We are close.  Very close.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-20 15:48   ` Eli Zaretskii
@ 2018-05-20 19:14     ` Alan Mackenzie
  2018-05-21  9:25       ` Nicolas Petton
  0 siblings, 1 reply; 31+ messages in thread
From: Alan Mackenzie @ 2018-05-20 19:14 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: emacs-devel

Hello, Eli.

On Sun, May 20, 2018 at 18:48:54 +0300, Eli Zaretskii wrote:
> > Date: Sun, 20 May 2018 13:56:34 +0000
> > From: Alan Mackenzie <acm@muc.de>

> > > Any objections to releasing Emacs 26.1 in a week's time, anyone?

> > That was two weeks ago.  Any chance of a quick summary from somebody of
> > where we are wrt the release?

> We are close.  Very close.

Thanks!  I will carry on (?)patiently looking forward to it.

-- 
Alan Mackenzie (Nuremberg, Germany).



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-20 19:14     ` Alan Mackenzie
@ 2018-05-21  9:25       ` Nicolas Petton
  2018-05-22  7:38         ` Tino Calancha
  0 siblings, 1 reply; 31+ messages in thread
From: Nicolas Petton @ 2018-05-21  9:25 UTC (permalink / raw)
  To: Alan Mackenzie, Eli Zaretskii; +Cc: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 169 bytes --]

Alan Mackenzie <acm@muc.de> writes:

> Thanks!  I will carry on (?)patiently looking forward to it.

I'll build the tarball sometime during the next days.

Cheers,
Nico

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-21  9:25       ` Nicolas Petton
@ 2018-05-22  7:38         ` Tino Calancha
  2018-05-22  9:40           ` Van L
  0 siblings, 1 reply; 31+ messages in thread
From: Tino Calancha @ 2018-05-22  7:38 UTC (permalink / raw)
  To: Nicolas Petton; +Cc: Alan Mackenzie, Eli Zaretskii, emacs-devel

Nicolas Petton <nicolas@petton.fr> writes:

> Alan Mackenzie <acm@muc.de> writes:
>
>> Thanks!  I will carry on (?)patiently looking forward to it.
>
> I'll build the tarball sometime during the next days.
I'll update the Wikipedia Emacs entry once you make the release
"One small step for man, one giant leap for mankind" :-)



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-22  7:38         ` Tino Calancha
@ 2018-05-22  9:40           ` Van L
  2018-05-22  9:56             ` Van L
  0 siblings, 1 reply; 31+ messages in thread
From: Van L @ 2018-05-22  9:40 UTC (permalink / raw)
  To: Tino Calancha; +Cc: Emacs developers


> Tino Calancha writes:
> 
> Nicolas Petton writes:
> 
>> Alan Mackenzie writes:
>> 
>> I'll build the tarball sometime during the next days.
> I'll update the Wikipedia Emacs entry once you make the release
> "One small step for man, one giant leap for mankind" :-)

Will it have a codename for the fun of that? and tardigrada mascot.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-22  9:40           ` Van L
@ 2018-05-22  9:56             ` Van L
  2018-05-24  1:40               ` Van L
  2018-05-25  5:10               ` Tino Calancha
  0 siblings, 2 replies; 31+ messages in thread
From: Van L @ 2018-05-22  9:56 UTC (permalink / raw)
  To: Emacs developers


>> Wikipedia GNU Emacs

Iterate the logo with 3D effect tilt suggesting flow dynamic is different. Animated gif subdued sparkle?


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-22  9:56             ` Van L
@ 2018-05-24  1:40               ` Van L
  2018-05-25  5:10               ` Tino Calancha
  1 sibling, 0 replies; 31+ messages in thread
From: Van L @ 2018-05-24  1:40 UTC (permalink / raw)
  To: Emacs developers

The image at the top of the splash page 
doesn’t seem to have a transparent background.




^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: Releasing Emacs 26.1
  2018-05-22  9:56             ` Van L
  2018-05-24  1:40               ` Van L
@ 2018-05-25  5:10               ` Tino Calancha
  1 sibling, 0 replies; 31+ messages in thread
From: Tino Calancha @ 2018-05-25  5:10 UTC (permalink / raw)
  To: Van L; +Cc: Emacs developers

Van L <van@scratch.space> writes:

>>> Wikipedia GNU Emacs
>
> Iterate the logo with 3D effect tilt suggesting flow dynamic is different. Animated gif subdued sparkle?
The Dired picture with caption 'Editing multiple Dired buffers in GNU
Emacs' is using an extension (probably dired+) without mention it.
I just want to update the 'Stable release' date.



^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2018-05-25  5:10 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-06 19:52 Releasing Emacs 26.1 Eli Zaretskii
2018-05-06 21:00 ` Alan Third
2018-05-07  1:21   ` Basil L. Contovounesios
2018-05-07 12:31     ` Alan Third
2018-05-07 12:46       ` Basil L. Contovounesios
2018-05-07 17:42   ` Eli Zaretskii
2018-05-07  0:13 ` Phil Sainty
2018-05-07  7:32   ` Michael Albinus
2018-05-07 11:10     ` Phil Sainty
2018-05-07 11:29       ` Michael Albinus
2018-05-07 15:08         ` Nicolas Petton
2018-05-07 18:09         ` Eli Zaretskii
2018-05-07 11:44       ` Van L
2018-05-07 12:05         ` Bastien
2018-05-07 18:08       ` Eli Zaretskii
2018-05-07 17:44   ` Eli Zaretskii
2018-05-07  5:30 ` John Wiegley
2018-05-07  5:40 ` Bastien
2018-05-07 19:05   ` Eli Zaretskii
2018-05-07 22:06     ` Rasmus
2018-05-08  2:28       ` Eli Zaretskii
2018-05-08  7:06 ` Byung-Hee HWANG (황병희, 黃炳熙)
2018-05-20 13:56 ` Alan Mackenzie
2018-05-20 15:48   ` Eli Zaretskii
2018-05-20 19:14     ` Alan Mackenzie
2018-05-21  9:25       ` Nicolas Petton
2018-05-22  7:38         ` Tino Calancha
2018-05-22  9:40           ` Van L
2018-05-22  9:56             ` Van L
2018-05-24  1:40               ` Van L
2018-05-25  5:10               ` Tino Calancha

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).