emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#19206: closed (25.0.50; CC Mode tracks wrong sourc


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#19206: closed (25.0.50; CC Mode tracks wrong source files)
Date: Tue, 13 Jan 2015 16:11:02 +0000

Your message dated Tue, 13 Jan 2015 17:09:59 +0100 (CET)
with message-id <address@hidden>
and subject line Re: bug#19206: 25.0.50; CC Mode tracks wrong source files
has caused the debbugs.gnu.org bug report #19206,
regarding 25.0.50; CC Mode tracks wrong source files
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
19206: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=19206
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: 25.0.50; CC Mode tracks wrong source files Date: Fri, 28 Nov 2014 11:19:01 +0100
CC Mode tracks wrong source files when a CC Mode derived mode is
installed non-interactively.

To reproduce, save the following code as `cc-miscompile.el'

(require 'package)
(require 'cc-defs)

(defun main ()
  (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/";))

  (setq package-user-dir (make-temp-file "cc-miscompile" 'directory))

  (package-initialize)
  (package-refresh-contents)
  (package-install 'd-mode)

  (require 'd-mode)

  (let ((source (get (intern "c-typedef-decl-kwds" c-lang-constants) 'source)))
    (message "Sources: %S" (mapcar 'car source)))

  (delete-directory package-user-dir 'recursive))

(main)

and run it with `emacs -Q --script cc-miscompile.el'.  The output is as
follows (package.el output shortened for readility):

Contacting host: melpa.org:80
Contacting host: elpa.gnu.org:80
[…]
Sources: (d-mode cc-miscompile cc-langs)

Note that `cc-miscompile' ends up in the source list of
`c-typedef-decl-kwds', even though it never actually calls any `c-*'
functions at all.

Naturally, CC Mode will later try to load this file, and fail if it is
not in the `load-path'.  This effectively breaks installations of D
Mode from non-interactive Emacs sessions.

I did not try to find the culprit.  The CC Mode code is convoluted
beyond my understanding.



--- End Message ---
--- Begin Message --- Subject: Re: bug#19206: 25.0.50; CC Mode tracks wrong source files Date: Tue, 13 Jan 2015 17:09:59 +0100 (CET) User-agent: Alpine 2.00 (BSF 1167 2008-08-23)
In article <address@hidden> you wrote:
CC Mode tracks wrong source files when a CC Mode derived mode is
installed non-interactively.

Bug fixed.

--
Alan Mackenzie (Nuremberg, Germany).



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]