changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / emacs/default.el

revision 690: 90417ae14b21
parent 678: 2b7d5a8d63ac
child 696: 38e9c3be2392
     1.1--- a/emacs/default.el	Tue Oct 01 22:29:08 2024 -0400
     1.2+++ b/emacs/default.el	Tue Oct 01 23:34:01 2024 -0400
     1.3@@ -369,21 +369,25 @@
     1.4 ;;   :ensure t
     1.5 ;;   :config
     1.6 ;;   (setq graphviz-dot-indent-width 2))
     1.7+
     1.8 ;;; Comments
     1.9 (defcustom prog-comment-keywords
    1.10   '("TODO" "REVIEW" "FIX" "HACK" "RESEARCH")
    1.11   "List of strings with comment keywords."
    1.12-  :group 'default)
    1.13+  :group 'default
    1.14+  :type 'list)
    1.15 
    1.16 (defcustom prog-comment-timestamp-format-concise "%F"
    1.17   "Specifier for date in `prog-comment-timestamp-keyword'.
    1.18 Refer to the doc string of `format-time-string' for the available
    1.19 options."
    1.20-  :group 'default)
    1.21+  :group 'default
    1.22+  :type 'string)
    1.23 
    1.24 (defcustom prog-comment-timestamp-format-verbose "%F %T %z"
    1.25   "Like `prog-comment-timestamp-format-concise', but longer."
    1.26-  :group 'default)
    1.27+  :group 'default
    1.28+  :type 'string)
    1.29 
    1.30 ;;;###autoload
    1.31 (defun prog-comment-dwim (arg)
    1.32@@ -570,7 +574,8 @@
    1.33 ;;; Scratch
    1.34 (defcustom default-scratch-buffer-mode 'lisp-interaction-mode
    1.35   "Default major mode for new scratch buffers"
    1.36-  :group 'default)
    1.37+  :group 'default
    1.38+  :type 'symbol)
    1.39 
    1.40 ;; Adapted from the `scratch.el' package by Ian Eure.
    1.41 (defun default-scratch-list-modes ()