GNU bug report logs - #21452
24.5; conf-mode has no parent

Previous Next

Package: emacs;

Reported by: Kurt Hackenberg <kh <at> panix.com>

Date: Thu, 10 Sep 2015 05:52:01 UTC

Severity: wishlist

Found in version 24.5

Done: Stefan Kangas <stefan <at> marxist.se>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 21452 in the body.
You can then email your comments to 21452 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#21452; Package emacs. (Thu, 10 Sep 2015 05:52:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Kurt Hackenberg <kh <at> panix.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Thu, 10 Sep 2015 05:52:02 GMT) Full text and rfc822 format available.

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

From: Kurt Hackenberg <kh <at> panix.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 24.5; conf-mode has no parent
Date: Wed, 9 Sep 2015 23:17:22 -0400
The major mode conf-mode has no parent mode, and does not inherit
anything, because it's not defined with define-derived-mode, just with
defun.

The source file conf-mode.el is in lisp/textmodes, but that seems
wrong.  Conf-mode's children edit files that contain software
configuration, not human language.  Probably conf-mode should be
derived from prog-mode.

Because of the lack of inheritance, my init file contains this
workaround:

;; show trailing whitespace (GNU 21)
;;for programming language modes and text modes, but not special modes
;;(dired, shell, etc.)
;;The minor mode whitespace-mode can do this now, but I haven't converted.
(if (not (featurep 'xemacs))
  (let ((tmp '(lambda () (setq show-trailing-whitespace t))))
    ;;use major mode inheritance to do this for these and their descendants
    (add-hook 'prog-mode-hook tmp)
    (add-hook 'text-mode-hook tmp)
    ;;bug: conf-mode is not derived from any other mode, doesn't inherit
    (add-hook 'conf-mode-hook tmp)))





In GNU Emacs 24.5.1 (amd64-portbld-freebsd10.1, GTK+ Version 2.24.27)
 of 2015-05-23 on 101amd64-default-job-03
Windowing system distributor `The X.Org Foundation', version
 11.0.11407000
Configured using:
 `configure --localstatedir=/var --disable-acl --with-dbus
 --without-file-notification --with-gconf --with-gif --with-gnutls
 --with-gsettings --with-jpeg --with-m17n-flt --with-imagemagick
 --with-libotf --with-png --with-toolkit-scroll-bars --with-rsvg
 --with-tiff --with-x --with-xft --with-xim --with-xml2 --with-xpm
 --with-x-toolkit=gtk2 --with-sound=oss --x-libraries=/usr/local/lib
 --x-includes=/usr/local/include --prefix=/usr/local
 --mandir=/usr/local/man --infodir=/usr/local/share/emacs/info/
 --build=amd64-portbld-freebsd10.1 'CFLAGS=-O2 -pipe -fstack-protector
 -fno-strict-aliasing' CPPFLAGS=-I/usr/local/include 'LDFLAGS=
 -L/usr/local/lib -Wl,-rpath=/usr/lib:/usr/local/lib
 -fstack-protector''

Important settings:
   locale-coding-system: nil

Major mode: Lisp Interaction

Minor modes in effect:
  tooltip-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

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.

Load-path shadows:
None found.

Features:
(shadow sort gnus-util mail-extr emacsbug message format-spec rfc822
mml
easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231
mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums
mm-util help-fns mail-prsvr mail-utils time-date tooltip electric
uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd
tool-bar
dnd fontset image regexp-opt fringe tabulated-list newcomment
lisp-mode
prog-mode register page menu-bar rfn-eshadow timer select scroll-bar
mouse jit-lock font-lock syntax facemenu font-core frame cham georgian
utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean
japanese hebrew greek romanian slovak czech european ethiopic indian
cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev
minibuffer 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 make-network-process
dbusbind dynamic-setting system-font-setting font-render-setting
move-toolbar gtk x-toolkit x multi-tty emacs)

Memory information:
((conses 16 70974 6840)
 (symbols 48 17553 0)
 (miscs 40 35 128)
 (strings 32 9003 4327)
 (string-bytes 1 247987)
 (vectors 16 8908)
 (vector-slots 8 383144 18301)
 (floats 8 63 154)
 (intervals 56 200 146)
 (buffers 960 11))




Severity set to 'wishlist' from 'minor' Request was from Stefan Kangas <stefan <at> marxist.se> to control <at> debbugs.gnu.org. (Sun, 29 Sep 2019 22:24:02 GMT) Full text and rfc822 format available.

Reply sent to Stefan Kangas <stefan <at> marxist.se>:
You have taken responsibility. (Wed, 12 Aug 2020 04:16:03 GMT) Full text and rfc822 format available.

Notification sent to Kurt Hackenberg <kh <at> panix.com>:
bug acknowledged by developer. (Wed, 12 Aug 2020 04:16:03 GMT) Full text and rfc822 format available.

Message #12 received at 21452-done <at> debbugs.gnu.org (full text, mbox):

From: Stefan Kangas <stefan <at> marxist.se>
To: Kurt Hackenberg <kh <at> panix.com>
Cc: 21452-done <at> debbugs.gnu.org
Subject: Re: bug#21452: 24.5; conf-mode has no parent
Date: Tue, 11 Aug 2020 21:15:30 -0700
Kurt Hackenberg <kh <at> panix.com> writes:

> The major mode conf-mode has no parent mode, and does not inherit
> anything, because it's not defined with define-derived-mode, just with
> defun.

This was fixed in:

commit e2a15c8ac4efe823c51c9a5750642532155199a8
Author: Stefan Monnier <monnier <at> iro.umontreal.ca>
Date:   Sat Mar 14 15:16:51 2020 -0400

    * lisp/textmodes/conf-mode.el (conf-mode): Use define-derived-mode

> The source file conf-mode.el is in lisp/textmodes, but that seems
> wrong.  Conf-mode's children edit files that contain software
> configuration, not human language.  Probably conf-mode should be
> derived from prog-mode.

Moving files is generally frowned upon since it makes it harder to
follow the history in git.  So for better or for worse, we will have to
live with its current location.

I don't see anything more to do here, so I'm closing this bug.  Thanks.

Best regards,
Stefan Kangas




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 09 Sep 2020 11:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 228 days ago.

Previous Next


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