emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/csv-mode 49eb4d1 21/34: * packages/csv-mode/csv-mode.el


From: Stefan Monnier
Subject: [elpa] externals/csv-mode 49eb4d1 21/34: * packages/csv-mode/csv-mode.el: Fix for customize-mode
Date: Sun, 29 Nov 2020 18:46:16 -0500 (EST)

branch: externals/csv-mode
commit 49eb4d109944046caf88cd030f651c217d5f6a2d
Author: Francis Wright <f.j.wright@qmul.ac.uk>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * packages/csv-mode/csv-mode.el: Fix for customize-mode
    
    (csv-mode, tsv-mode): Specify :group explicitly for `customize-mode`s 
benefit
---
 csv-mode.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/csv-mode.el b/csv-mode.el
index 3dde5c8..90010fc 100644
--- a/csv-mode.el
+++ b/csv-mode.el
@@ -3,7 +3,6 @@
 ;; Copyright (C) 2003, 2004, 2012-2019  Free Software Foundation, Inc
 
 ;; Author: "Francis J. Wright" <F.J.Wright@qmul.ac.uk>
-;; Time-stamp: <23 August 2004>
 ;; Version: 1.9
 ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))
 ;; Keywords: convenience
@@ -309,6 +308,7 @@ Sort order is controlled by `csv-descending'.
 CSV mode provides the following specific keyboard key bindings:
 
 \\{csv-mode-map}"
+  :group 'CSV
   ;; We used to `turn-off-auto-fill' here instead, but that's not very
   ;; effective since text-mode-hook is run afterwards anyway!
   (setq-local normal-auto-fill-function nil)
@@ -1553,6 +1553,7 @@ If there is already a header line, then unset the header 
line."
 ;;;###autoload
 (define-derived-mode tsv-mode csv-mode "TSV"
   "Major mode for editing files of tab-separated value type."
+  :group 'CSV
   ;; In TSV we know TAB is the only possible separator.
   (setq-local csv-separators '("\t"))
   ;; FIXME: Copy&pasted from the `:set'ter of csv-separators!



reply via email to

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