From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.bugs Subject: bug#16682: 24.3.50; Cannot edit abbrevs Date: Fri, 07 Feb 2014 20:27:32 -0500 Message-ID: References: <52F4FD70.7080302@miszellen.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1391822882 21442 80.91.229.3 (8 Feb 2014 01:28:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 8 Feb 2014 01:28:02 +0000 (UTC) To: 16682-done@debbugs.gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sat Feb 08 02:28:09 2014 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WBwiH-0001so-6e for geb-bug-gnu-emacs@m.gmane.org; Sat, 08 Feb 2014 02:28:09 +0100 Original-Received: from localhost ([::1]:44440 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBwiG-0008Ar-PQ for geb-bug-gnu-emacs@m.gmane.org; Fri, 07 Feb 2014 20:28:08 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36872) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBwiD-0008Ah-F9 for bug-gnu-emacs@gnu.org; Fri, 07 Feb 2014 20:28:06 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WBwiC-0003qA-Dw for bug-gnu-emacs@gnu.org; Fri, 07 Feb 2014 20:28:05 -0500 Original-Received: from debbugs.gnu.org ([140.186.70.43]:41554) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBwiC-0003q6-AR for bug-gnu-emacs@gnu.org; Fri, 07 Feb 2014 20:28:04 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1WBwiB-0005Xn-MJ for bug-gnu-emacs@gnu.org; Fri, 07 Feb 2014 20:28:03 -0500 Resent-From: Glenn Morris Original-Sender: "Debbugs-submit" Resent-To: bug-gnu-emacs@gnu.org Resent-Date: Sat, 08 Feb 2014 01:28:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 16682 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Mail-Followup-To: 16682@debbugs.gnu.org, rgm@gnu.org, fb@miszellen.de Original-Received: via spool by 16682-done@debbugs.gnu.org id=D16682.139182285821268 (code D ref 16682); Sat, 08 Feb 2014 01:28:02 +0000 Original-Received: (at 16682-done) by debbugs.gnu.org; 8 Feb 2014 01:27:38 +0000 Original-Received: from localhost ([127.0.0.1]:55572 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WBwhl-0005Wx-Hu for submit@debbugs.gnu.org; Fri, 07 Feb 2014 20:27:37 -0500 Original-Received: from fencepost.gnu.org ([208.118.235.10]:53731) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WBwhi-0005Wp-SH for 16682-done@debbugs.gnu.org; Fri, 07 Feb 2014 20:27:35 -0500 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1WBwhh-0005hm-4y; Fri, 07 Feb 2014 20:27:33 -0500 X-Spook: SAFE asset illuminati nitrate SWAT Firefly Exon Shell X-Ran: kWV*.1B X-Hue: white X-Attribution: GM In-Reply-To: <52F4FD70.7080302@miszellen.de> (Florian Beck's message of "Fri, 07 Feb 2014 16:36:16 +0100") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:84844 Archived-At: Version: 24.4 Florian Beck wrote: > emacs -Q > M-x edit-abbrevs > > But there doesn't seem to be a way to edit anything. I.e. alphanumeric > keys are undefined. Ha, deriving an editing mode from special-mode was an interesting choice. :) This should fix it: *** lisp/abbrev.el 2014-01-06 23:34:05 +0000 --- lisp/abbrev.el 2014-02-08 01:26:13 +0000 *************** *** 1007,1013 **** ;; Keep it after define-abbrev-table, since define-derived-mode uses ;; define-abbrev-table. ! (define-derived-mode edit-abbrevs-mode special-mode "Edit-Abbrevs" "Major mode for editing the list of abbrev definitions.") (provide 'abbrev) --- 1007,1013 ---- ;; Keep it after define-abbrev-table, since define-derived-mode uses ;; define-abbrev-table. ! (define-derived-mode edit-abbrevs-mode fundamental-mode "Edit-Abbrevs" "Major mode for editing the list of abbrev definitions.") (provide 'abbrev)