all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#24957: 26.0.50; DARWIN_OS_CASE_SENSITIVE_FIXME typos (PATCH)
@ 2016-11-16 22:29 Andrew Moore
  2016-11-16 23:26 ` Ken Brown
  2016-11-17  2:32 ` 26.0.50; CEDET stickyfunc-mode broken after recent removal of default-FOO variables Andrew Moore
  0 siblings, 2 replies; 7+ messages in thread
From: Andrew Moore @ 2016-11-16 22:29 UTC (permalink / raw)
  To: 24957

Following commit 8b48e937af801e11e2d1844d60b6e585ce09dcea ("Simplify
case-insensitivity checks on Mac OS X"), Emacs fails to compile under darwin due to typos.
Here's a patch:

diff --git a/src/fileio.c b/src/fileio.c
index 70799eb..f741a78 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2282,7 +2282,7 @@ file_name_case_insensitive_p (const char *filename)
     {
       /* This is based on developer.apple.com's getattrlist man page.  */
       struct attrlist alist = {.volattr = ATTR_VOL_CAPABILITIES};
-      struct vol_capabilities_attr_t vcaps;
+      /* struct */ vol_capabilities_attr_t vcaps;
       if (getattrlist (filename, &alist, &vcaps, sizeof vcaps, 0) == 0)
	{
	  if (vcaps.valid[VOL_CAPABILITIES_FORMAT] & VOL_CAP_FMT_CASE_SENSITIVE)
@@ -2295,7 +2295,7 @@ file_name_case_insensitive_p (const char *filename)
       /* The following is based on
	 http://lists.apple.com/archives/darwin-dev/2007/Apr/msg00010.html.  */
       struct attrlist alist;
-      unsigned char buffer[sizeof (vol_capabilities_attr_t)  sizeof (size_t)];
+      unsigned char buffer[sizeof (vol_capabilities_attr_t) + sizeof (size_t)];

       memset (&alist, 0, sizeof (alist));
       alist.volattr = ATTR_VOL_CAPABILITIES;


In GNU Emacs 26.0.50.3 (x86_64-apple-darwin15.6.0, NS appkit-1404.47 Version 10.11.6 (Build 15G1108))
of 2016-11-16 built on vesta.slewsys.org
Repository revision: dc4b8a0c329a9d9e56e6be63cb4a0f59a952b07f
Windowing system distributor 'Apple', version 10.3.1404
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
/opt/src/programming/emacs/emacs
mwheel-scroll: End of buffer [4 times]
Compilation exited abnormally with code 2

Configured using:
'configure --prefix=/opt --with-ns CC=/usr/bin/clang
CXX=/usr/bin/clang++'

Configured features:
JPEG RSVG IMAGEMAGICK DBUS NOTIFY ACL GNUTLS LIBXML2 ZLIB
TOOLKIT_SCROLL_BARS NS

Important settings:
  value of $LC_ALL: en_US.UTF-8
  value of $LANG: en_US.UTF-8
  locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

Minor modes in effect:
  shell-dirtrack-mode: t
  tooltip-mode: t
  global-eldoc-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug message subr-x puny seq byte-opt gv
bytecomp byte-compile cl-extra help-mode cconv cl-loaddefs pcase cl-lib
dired dired-loaddefs format-spec rfc822 mml easymenu mml-sec
password-cache epa derived epg epg-config gnus-util rmail rmail-loaddefs
mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils
mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr
mail-utils compile shell pcomplete comint ansi-color ring time-date
mule-util tooltip eldoc electric uniquify ediff-hook vc-hooks
lisp-float-type mwheel term/ns-win ns-win ucs-normalize term/common-win
tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment
elisp-mode lisp-mode prog-mode register page menu-bar rfn-eshadow timer
select scroll-bar mouse jit-lock font-lock syntax facemenu font-core
term/tty-colors frame cl-generic cham georgian utf-8-lang misc-lang
vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932
hebrew greek romanian slovak czech european ethiopic indian cyrillic
chinese charscript case-table epa-hook jka-cmpr-hook help simple abbrev
obarray minibuffer cl-preloaded nadvice loaddefs button faces cus-face
macroexp files text-properties overlay sha1 md5 base64 format env
code-pages mule custom widget hashtable-print-readable backquote
dbusbind kqueue cocoa ns multi-tty make-network-process emacs)

Memory information:
((conses 16 215600 6717)
(symbols 48 20559 0)
(miscs 40 52 123)
(strings 32 20332 6483)
(string-bytes 1 663313)
(vectors 16 35782)
(vector-slots 8 676057 7085)
(floats 8 186 173)
(intervals 56 582 0)
(buffers 976 13))





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

* bug#24957: 26.0.50; DARWIN_OS_CASE_SENSITIVE_FIXME typos (PATCH)
  2016-11-16 22:29 bug#24957: 26.0.50; DARWIN_OS_CASE_SENSITIVE_FIXME typos (PATCH) Andrew Moore
@ 2016-11-16 23:26 ` Ken Brown
  2016-11-20 14:35   ` Ken Brown
  2016-11-17  2:32 ` 26.0.50; CEDET stickyfunc-mode broken after recent removal of default-FOO variables Andrew Moore
  1 sibling, 1 reply; 7+ messages in thread
From: Ken Brown @ 2016-11-16 23:26 UTC (permalink / raw)
  To: Andrew Moore, 24957

On 11/16/2016 5:29 PM, Andrew Moore wrote:
> Following commit 8b48e937af801e11e2d1844d60b6e585ce09dcea ("Simplify
> case-insensitivity checks on Mac OS X"), Emacs fails to compile under darwin due to typos.

Sorry about that.  Should be fixed now.

Ken






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

* 26.0.50; CEDET stickyfunc-mode broken after recent removal of default-FOO variables
  2016-11-16 22:29 bug#24957: 26.0.50; DARWIN_OS_CASE_SENSITIVE_FIXME typos (PATCH) Andrew Moore
  2016-11-16 23:26 ` Ken Brown
@ 2016-11-17  2:32 ` Andrew Moore
  2016-11-17  2:57   ` Clément Pit--Claudel
  2016-11-17  3:00   ` Mark Oteiza
  1 sibling, 2 replies; 7+ messages in thread
From: Andrew Moore @ 2016-11-17  2:32 UTC (permalink / raw)
  To: emacs-devel

CEDET stickyfunc-mode appears to be broken after recent commits:

    e6681b27394a23979c3aef3925f78ef9cd75bd32 (“Nix more uses of default-FOO variables (Bug#24946)”),
    73d47d22197175f08b2dd62e76d7138872e611d2 (“Remove obsolete default-FOO variables”)

Being enamored of stickyfunc-mode, I’m hoping that someone might point me in the direction of a resolution.  What I have so far is only a partial workaround.

Prior to the above commits, CEDET and stickyfunc-mode were enabled globally via the following lines in my .emacs:

    (load (concat cedet-load-path "/semantic/loaddefs.el"))
    (semantic-mode)
    (mapc
      (lambda (mode)
        (funcall mode 1))
      '(global-semantic-idle-summary-mode
       global-semantic-idle-completions-mode
       global-semantic-idle-scheduler-mode
       global-semanticdb-minor-mode))
       global-semantic-stickyfunc-mode))

(This might be more properly done via customization, but the effect should be the same)

After commits removing the obsolete `default-FOO’ variables, including `default-header-line-format', Emacs drops into the debugger on startup as result of the above lines.  One work around is to enable stickyfunc-mode via major mode hooks.  E.g., after commenting out the last line above `global-semantic-stickyfunc-mode’, stickyfunc mode can be enabled in C mode with the following hook:

    (defun c-mode-setup ()
      "Adjust C mode environment."
      (semantic-mode)
      (make-local-variable 'header-line-format)
      (setq header-line-format
               '(:eval
                 (list
                  (propertize " " 'display
                                    '((space :align-to 0)))
                  (semantic-stickyfunc-fetch-stickyline))))
      (semantic-stickyfunc-mode))

    (add-hook 'c-mode-common-hook #'c-mode-setup)

Unfortunately, adding this to emacs-lisp-mode-hook causes Emacs to again drop into the debugger on startup.  In fact, whereas stickyfunc-mode works with C code, it seems not to have worked with Lisp for a while now (i.e., prior to removal of the `default-FOO’ variables).  Obviously it would help to identify the breaking commit, but I’m not even sure what time frame to examine.

In the mean time, perhaps someone could offer some insight into what’s going on?  Why did removal of the obsolete variable `default-header-line-format’ wreck such havoc?  Should I be looking at CEDET code, or might the problem be of a more generic nature that could be affecting other code that I haven’t come across yet?  Once enough information has been gathered, a bug report will be submitted.  Thank you!
-AM

In GNU Emacs 26.0.50.3 (x86_64-apple-darwin15.6.0, NS appkit-1404.47 Version 10.11.6 (Build 15G1108))
of 2016-11-16 built on vesta.slewsys.org
Repository revision: dc4b8a0c329a9d9e56e6be63cb4a0f59a952b07f
Windowing system distributor 'Apple', version 10.3.1404
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
/opt/src/programming/emacs/emacs
mwheel-scroll: End of buffer [4 times]
Compilation exited abnormally with code 2

Configured using:
'configure --prefix=/opt --with-ns CC=/usr/bin/clang
CXX=/usr/bin/clang++'

Configured features:
JPEG RSVG IMAGEMAGICK DBUS NOTIFY ACL GNUTLS LIBXML2 ZLIB
TOOLKIT_SCROLL_BARS NS

Important settings:
 value of $LC_ALL: en_US.UTF-8
 value of $LANG: en_US.UTF-8
 locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

Minor modes in effect:
 shell-dirtrack-mode: t
 tooltip-mode: t
 global-eldoc-mode: t
 electric-indent-mode: t
 mouse-wheel-mode: t
 tool-bar-mode: t
 menu-bar-mode: t
 file-name-shadow-mode: t
 global-font-lock-mode: t
 font-lock-mode: t
 blink-cursor-mode: t
 auto-composition-mode: t
 auto-encryption-mode: t
 auto-compression-mode: t
 line-number-mode: t
 transient-mark-mode: t

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug message subr-x puny seq byte-opt gv
bytecomp byte-compile cl-extra help-mode cconv cl-loaddefs pcase cl-lib
dired dired-loaddefs format-spec rfc822 mml easymenu mml-sec
password-cache epa derived epg epg-config gnus-util rmail rmail-loaddefs
mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils
mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr
mail-utils compile shell pcomplete comint ansi-color ring time-date
mule-util tooltip eldoc electric uniquify ediff-hook vc-hooks
lisp-float-type mwheel term/ns-win ns-win ucs-normalize term/common-win
tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment
elisp-mode lisp-mode prog-mode register page menu-bar rfn-eshadow timer
select scroll-bar mouse jit-lock font-lock syntax facemenu font-core
term/tty-colors frame cl-generic cham georgian utf-8-lang misc-lang
vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932
hebrew greek romanian slovak czech european ethiopic indian cyrillic
chinese charscript case-table epa-hook jka-cmpr-hook help simple abbrev
obarray minibuffer cl-preloaded nadvice loaddefs button faces cus-face
macroexp files text-properties overlay sha1 md5 base64 format env
code-pages mule custom widget hashtable-print-readable backquote
dbusbind kqueue cocoa ns multi-tty make-network-process emacs)

Memory information:
((conses 16 215600 6717)
(symbols 48 20559 0)
(miscs 40 52 123)
(strings 32 20332 6483)
(string-bytes 1 663313)
(vectors 16 35782)
(vector-slots 8 676057 7085)
(floats 8 186 173)
(intervals 56 582 0)
(buffers 976 13))




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

* Re: 26.0.50; CEDET stickyfunc-mode broken after recent removal of default-FOO variables
  2016-11-17  2:32 ` 26.0.50; CEDET stickyfunc-mode broken after recent removal of default-FOO variables Andrew Moore
@ 2016-11-17  2:57   ` Clément Pit--Claudel
  2016-11-17  3:00   ` Mark Oteiza
  1 sibling, 0 replies; 7+ messages in thread
From: Clément Pit--Claudel @ 2016-11-17  2:57 UTC (permalink / raw)
  To: emacs-devel


[-- Attachment #1.1: Type: text/plain, Size: 5952 bytes --]

I could not reproduce this issue.  What is cedet-load-path?

On 2016-11-16 21:32, Andrew Moore wrote:
> CEDET stickyfunc-mode appears to be broken after recent commits:
> 
>     e6681b27394a23979c3aef3925f78ef9cd75bd32 (“Nix more uses of default-FOO variables (Bug#24946)”),
>     73d47d22197175f08b2dd62e76d7138872e611d2 (“Remove obsolete default-FOO variables”)
> 
> Being enamored of stickyfunc-mode, I’m hoping that someone might point me in the direction of a resolution.  What I have so far is only a partial workaround.
> 
> Prior to the above commits, CEDET and stickyfunc-mode were enabled globally via the following lines in my .emacs:
> 
>     (load (concat cedet-load-path "/semantic/loaddefs.el"))
>     (semantic-mode)
>     (mapc
>       (lambda (mode)
>         (funcall mode 1))
>       '(global-semantic-idle-summary-mode
>        global-semantic-idle-completions-mode
>        global-semantic-idle-scheduler-mode
>        global-semanticdb-minor-mode))
>        global-semantic-stickyfunc-mode))
> 
> (This might be more properly done via customization, but the effect should be the same)
> 
> After commits removing the obsolete `default-FOO’ variables, including `default-header-line-format', Emacs drops into the debugger on startup as result of the above lines.  One work around is to enable stickyfunc-mode via major mode hooks.  E.g., after commenting out the last line above `global-semantic-stickyfunc-mode’, stickyfunc mode can be enabled in C mode with the following hook:
> 
>     (defun c-mode-setup ()
>       "Adjust C mode environment."
>       (semantic-mode)
>       (make-local-variable 'header-line-format)
>       (setq header-line-format
>                '(:eval
>                  (list
>                   (propertize " " 'display
>                                     '((space :align-to 0)))
>                   (semantic-stickyfunc-fetch-stickyline))))
>       (semantic-stickyfunc-mode))
> 
>     (add-hook 'c-mode-common-hook #'c-mode-setup)
> 
> Unfortunately, adding this to emacs-lisp-mode-hook causes Emacs to again drop into the debugger on startup.  In fact, whereas stickyfunc-mode works with C code, it seems not to have worked with Lisp for a while now (i.e., prior to removal of the `default-FOO’ variables).  Obviously it would help to identify the breaking commit, but I’m not even sure what time frame to examine.
> 
> In the mean time, perhaps someone could offer some insight into what’s going on?  Why did removal of the obsolete variable `default-header-line-format’ wreck such havoc?  Should I be looking at CEDET code, or might the problem be of a more generic nature that could be affecting other code that I haven’t come across yet?  Once enough information has been gathered, a bug report will be submitted.  Thank you!
> -AM
> 
> In GNU Emacs 26.0.50.3 (x86_64-apple-darwin15.6.0, NS appkit-1404.47 Version 10.11.6 (Build 15G1108))
> of 2016-11-16 built on vesta.slewsys.org
> Repository revision: dc4b8a0c329a9d9e56e6be63cb4a0f59a952b07f
> Windowing system distributor 'Apple', version 10.3.1404
> Recent messages:
> For information about GNU Emacs and the GNU system, type C-h C-a.
> /opt/src/programming/emacs/emacs
> mwheel-scroll: End of buffer [4 times]
> Compilation exited abnormally with code 2
> 
> Configured using:
> 'configure --prefix=/opt --with-ns CC=/usr/bin/clang
> CXX=/usr/bin/clang++'
> 
> Configured features:
> JPEG RSVG IMAGEMAGICK DBUS NOTIFY ACL GNUTLS LIBXML2 ZLIB
> TOOLKIT_SCROLL_BARS NS
> 
> Important settings:
>  value of $LC_ALL: en_US.UTF-8
>  value of $LANG: en_US.UTF-8
>  locale-coding-system: utf-8-unix
> 
> Major mode: Lisp Interaction
> 
> Minor modes in effect:
>  shell-dirtrack-mode: t
>  tooltip-mode: t
>  global-eldoc-mode: t
>  electric-indent-mode: t
>  mouse-wheel-mode: t
>  tool-bar-mode: t
>  menu-bar-mode: t
>  file-name-shadow-mode: t
>  global-font-lock-mode: t
>  font-lock-mode: t
>  blink-cursor-mode: t
>  auto-composition-mode: t
>  auto-encryption-mode: t
>  auto-compression-mode: t
>  line-number-mode: t
>  transient-mark-mode: t
> 
> Load-path shadows:
> None found.
> 
> Features:
> (shadow sort mail-extr emacsbug message subr-x puny seq byte-opt gv
> bytecomp byte-compile cl-extra help-mode cconv cl-loaddefs pcase cl-lib
> dired dired-loaddefs format-spec rfc822 mml easymenu mml-sec
> password-cache epa derived epg epg-config gnus-util rmail rmail-loaddefs
> mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils
> mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr
> mail-utils compile shell pcomplete comint ansi-color ring time-date
> mule-util tooltip eldoc electric uniquify ediff-hook vc-hooks
> lisp-float-type mwheel term/ns-win ns-win ucs-normalize term/common-win
> tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment
> elisp-mode lisp-mode prog-mode register page menu-bar rfn-eshadow timer
> select scroll-bar mouse jit-lock font-lock syntax facemenu font-core
> term/tty-colors frame cl-generic cham georgian utf-8-lang misc-lang
> vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932
> hebrew greek romanian slovak czech european ethiopic indian cyrillic
> chinese charscript case-table epa-hook jka-cmpr-hook help simple abbrev
> obarray minibuffer cl-preloaded nadvice loaddefs button faces cus-face
> macroexp files text-properties overlay sha1 md5 base64 format env
> code-pages mule custom widget hashtable-print-readable backquote
> dbusbind kqueue cocoa ns multi-tty make-network-process emacs)
> 
> Memory information:
> ((conses 16 215600 6717)
> (symbols 48 20559 0)
> (miscs 40 52 123)
> (strings 32 20332 6483)
> (string-bytes 1 663313)
> (vectors 16 35782)
> (vector-slots 8 676057 7085)
> (floats 8 186 173)
> (intervals 56 582 0)
> (buffers 976 13))
> 
> 
> 


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: 26.0.50; CEDET stickyfunc-mode broken after recent removal of default-FOO variables
  2016-11-17  2:32 ` 26.0.50; CEDET stickyfunc-mode broken after recent removal of default-FOO variables Andrew Moore
  2016-11-17  2:57   ` Clément Pit--Claudel
@ 2016-11-17  3:00   ` Mark Oteiza
  2016-11-17  5:24     ` Andrew Moore
  1 sibling, 1 reply; 7+ messages in thread
From: Mark Oteiza @ 2016-11-17  3:00 UTC (permalink / raw)
  To: Andrew Moore; +Cc: emacs-devel


Andrew Moore <slewsys@gmail.com> writes:
> CEDET stickyfunc-mode appears to be broken after recent commits:
>
>     e6681b27394a23979c3aef3925f78ef9cd75bd32 (“Nix more uses of default-FOO variables (Bug#24946)”),
>     73d47d22197175f08b2dd62e76d7138872e611d2 (“Remove obsolete default-FOO variables”)
>
> Being enamored of stickyfunc-mode, I’m hoping that someone might point
> me in the direction of a resolution.  What I have so far is only a
> partial workaround.
>
> Prior to the above commits, CEDET and stickyfunc-mode were enabled
> globally via the following lines in my .emacs:
>
>     (load (concat cedet-load-path "/semantic/loaddefs.el"))
>     (semantic-mode)
>     (mapc
>       (lambda (mode)
>         (funcall mode 1))
>       '(global-semantic-idle-summary-mode
>        global-semantic-idle-completions-mode
>        global-semantic-idle-scheduler-mode
>        global-semanticdb-minor-mode))
>        global-semantic-stickyfunc-mode))

Without the cedet-load-path line, the above works fine here (as the sole
contents of init.el) on e6681b27 (the latest commit listed above).  I
can open C files and sticky mode is operational.  Are you loading CEDET
from somewhere else?



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

* Re: 26.0.50; CEDET stickyfunc-mode broken after recent removal of default-FOO variables
  2016-11-17  3:00   ` Mark Oteiza
@ 2016-11-17  5:24     ` Andrew Moore
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Moore @ 2016-11-17  5:24 UTC (permalink / raw)
  To: Mark Oteiza; +Cc: emacs-devel

> Andrew Moore <slewsys@gmail.com> writes:
>> CEDET stickyfunc-mode appears to be broken after recent commits:
>> 
>>    e6681b27394a23979c3aef3925f78ef9cd75bd32 (“Nix more uses of default-FOO variables (Bug#24946)”),
>>    73d47d22197175f08b2dd62e76d7138872e611d2 (“Remove obsolete default-FOO variables”)
>> 
>> Being enamored of stickyfunc-mode, I’m hoping that someone might point
>> me in the direction of a resolution.  What I have so far is only a
>> partial workaround.
>> 
>> Prior to the above commits, CEDET and stickyfunc-mode were enabled
>> globally via the following lines in my .emacs:
>> 
>>    (load (concat cedet-load-path "/semantic/loaddefs.el"))
>>    (semantic-mode)
>>    (mapc
>>      (lambda (mode)
>>        (funcall mode 1))
>>      '(global-semantic-idle-summary-mode
>>       global-semantic-idle-completions-mode
>>       global-semantic-idle-scheduler-mode
>>       global-semanticdb-minor-mode))
>>       global-semantic-stickyfunc-mode))
> 

On Nov 16, 2016, at 10:00 PM, Mark Oteiza <mvoteiza@udel.edu> wrote:
> Without the cedet-load-path line, the above works fine here (as the sole
> contents of init.el) on e6681b27 (the latest commit listed above).  I
> can open C files and sticky mode is operational.  Are you loading CEDET
> from somewhere else?

Indeed, I’m not able to reproduce the problem myself now (other than stickyfunc-mode isn’t working for lisp-mode, which may have been the confounding issue).  So false report. I’ll try to be more careful.  Thank you for checking!
-AM


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

* bug#24957: 26.0.50; DARWIN_OS_CASE_SENSITIVE_FIXME typos (PATCH)
  2016-11-16 23:26 ` Ken Brown
@ 2016-11-20 14:35   ` Ken Brown
  0 siblings, 0 replies; 7+ messages in thread
From: Ken Brown @ 2016-11-20 14:35 UTC (permalink / raw)
  To: Andrew Moore, 24957-done

On 11/16/2016 6:26 PM, Ken Brown wrote:
> Sorry about that.  Should be fixed now.

Closing.






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

end of thread, other threads:[~2016-11-20 14:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-16 22:29 bug#24957: 26.0.50; DARWIN_OS_CASE_SENSITIVE_FIXME typos (PATCH) Andrew Moore
2016-11-16 23:26 ` Ken Brown
2016-11-20 14:35   ` Ken Brown
2016-11-17  2:32 ` 26.0.50; CEDET stickyfunc-mode broken after recent removal of default-FOO variables Andrew Moore
2016-11-17  2:57   ` Clément Pit--Claudel
2016-11-17  3:00   ` Mark Oteiza
2016-11-17  5:24     ` Andrew Moore

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.