GNU bug report logs - #17125
24.4.50; daemon mode: closing X client frame exits entire emacs

Previous Next

Package: emacs;

Reported by: peder <at> klingenberg.no (Peder O. Klingenberg)

Date: Thu, 27 Mar 2014 23:04:01 UTC

Severity: important

Merged with 18041

Found in versions 24.3, 24.4.50

Fixed in version 24.4

Done: Glenn Morris <rgm <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


Message #20 received at 17125 <at> debbugs.gnu.org (full text, mbox):

From: Andreas Schwab <schwab <at> suse.de>
To: Dmitry Antipov <dmantipov <at> yandex.ru>
Cc: "Peder O. Klingenberg" <peder <at> klingenberg.no>, 17125 <at> debbugs.gnu.org
Subject: Re: bug#17125: Acknowledgement (24.4.50;
 daemon mode: closing X client frame exits entire emacs)
Date: Tue, 01 Apr 2014 17:27:09 +0200
Dmitry Antipov <dmantipov <at> yandex.ru> writes:

> === modified file 'src/lisp.h'
> --- src/lisp.h	2014-03-27 22:52:14 +0000
> +++ src/lisp.h	2014-04-01 14:07:02 +0000
> @@ -3709,6 +3709,16 @@
>    return v;
>  }
>  
> +/* Fast path to avoid Fvconcat (1, &obj).  */
> +
> +INLINE Lisp_Object
> +vector1 (Lisp_Object obj)
> +{
> +  Lisp_Object v = make_uninit_vector (1);
> +  ASET (v, 0, obj);
> +  return v;
> +}
> +

This is not a useful comment.  Fvconcat(1,&obj) and vector1(obj) have
quite different semantics.  The latter creates a one-element vector
containing obj (same as Fvector(1,&obj)), whereas the former creates a
vector from all elements in obj.

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab <at> suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."




This bug report was last modified 6 years and 22 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.