File tree Expand file tree Collapse file tree 7 files changed +18
-14
lines changed Expand file tree Collapse file tree 7 files changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -30451,7 +30451,7 @@ Below is a slightly shortened version of the @code{nndir} back end.
30451
30451
nnml-current-directory nnmh-current-directory)
30452
30452
30453
30453
(defvoo nndir-nov-is-evil nil
30454
- "* Non-nil means that nndir will never retrieve NOV headers."
30454
+ "Non-nil means that nndir will never retrieve NOV headers."
30455
30455
nnml-nov-is-evil)
30456
30456
30457
30457
(defvoo nndir-current-group ""
Original file line number Diff line number Diff line change @@ -122,9 +122,6 @@ It can use the same icons as gud.
122
122
** Check what minor modes don't use define-minor-mode and convert them
123
123
to use it.
124
124
125
- ** Convert all defvars with leading '*' in the doc-strings into defcustoms
126
- of appropriate :type and :group.
127
-
128
125
** Remove unnecessary autoload cookies from defcustoms.
129
126
This needs a bit of care, since often people have become used to
130
127
expecting such variables to always be defined, eg when they modify
Original file line number Diff line number Diff line change @@ -616,7 +616,7 @@ DIRNAME omitted or nil means use `desktop-dirname'."
616
616
" ;; --------------------------------------------------------------------------
617
617
;; Desktop File for Emacs
618
618
;; --------------------------------------------------------------------------
619
- " " * Header to place in Desktop file." )
619
+ " " Header to place in Desktop file." )
620
620
621
621
(defvar desktop-delay-hook nil
622
622
" Hooks run after all buffers are loaded; intended for internal use." )
Original file line number Diff line number Diff line change 77
77
78
78
(require 'shell )
79
79
80
- (defvar kermit-esc-char " \C -\\ " " *Kermit's escape char." )
80
+ (defgroup kermit nil
81
+ " Kermit support."
82
+ :group 'comm )
83
+
84
+ (defcustom kermit-esc-char " \C -\\ "
85
+ " Kermit's escape char."
86
+ :type 'string )
81
87
82
88
(defun kermit-esc ()
83
89
" For sending escape sequences to a kermit running in shell mode."
Original file line number Diff line number Diff line change 59
59
60
60
; ; In case c-mode.el isn't loaded
61
61
(defvar c-indent-level 2
62
- " * Indentation of C statements with respect to containing block." )
62
+ " Indentation of C statements with respect to containing block." )
63
63
;;;### autoload (put 'c-indent-level 'safe-local-variable 'integerp)
64
64
65
65
(defvar c-brace-imaginary-offset 0
66
- " * Imagined indentation of a C open brace that actually follows a statement." )
66
+ " Imagined indentation of a C open brace that actually follows a statement." )
67
67
(defvar c-brace-offset 0
68
- " * Extra indentation for braces, compared with other text in same context." )
68
+ " Extra indentation for braces, compared with other text in same context." )
69
69
(defvar c-argdecl-indent 5
70
- " * Indentation level of declarations of C function arguments." )
70
+ " Indentation level of declarations of C function arguments." )
71
71
(defvar c-label-offset -2
72
- " * Offset of C label lines and case statements relative to usual indentation." )
72
+ " Offset of C label lines and case statements relative to usual indentation." )
73
73
(defvar c-continued-statement-offset 2
74
- " * Extra indent for lines not starting new statements." )
74
+ " Extra indent for lines not starting new statements." )
75
75
(defvar c-continued-brace-offset 0
76
- " * Extra indent for substatements that start with open-braces.
76
+ " Extra indent for substatements that start with open-braces.
77
77
This is in addition to c-continued-statement-offset." )
78
78
79
79
Original file line number Diff line number Diff line change @@ -459,7 +459,7 @@ Preloaded with all known option names from dcl-option-alist")
459
459
; ("GOSUB" (, (concat dcl-cmd-r
460
460
; "GOSUB[ \t]+\\ ([A-Za-z0-9_$]+\\ )")) 5)
461
461
; ("CALL" (, (concat dcl-cmd-r "CALL[ \t]+\\ ([A-Za-z0-9_$]+\\ )")) 5)))
462
- ; "* Default imenu generic expression for DCL.
462
+ ; "Default imenu generic expression for DCL.
463
463
464
464
; The default includes SUBROUTINE labels in the main listing and
465
465
; sub-listings for other labels, CALL, GOTO and GOSUB statements.
Original file line number Diff line number Diff line change 83
83
(defvar a-defvar (cons 1 2 )
84
84
" Variable a" )
85
85
86
+ ; ; FIXME: This practice is not recommended in recent Emacs. Remove?
86
87
(defvar a-defvar-star (cons 1 2 )
87
88
" *User visible var a" )
88
89
You can’t perform that action at this time.
0 commit comments