Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
61355f1c
Commit
61355f1c
authored
Sep 03, 1999
by
Dave Love
Browse files
(double-mode): Customize the variable.
parent
55115f09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
lisp/double.el
lisp/double.el
+13
-3
No files found.
lisp/double.el
View file @
61355f1c
...
...
@@ -157,9 +157,19 @@ but not `C-u X' or `ESC X' since the X is not the prefix key."
;;; Mode
(
defvar
double-mode
nil
)
;; Indicator for the double mode.
(
make-variable-buffer-local
'double-mode
)
;;;###autoload
(
defcustom
double-mode
nil
"Toggle Double mode.
Setting this variable directly does not take effect;
use either \\[customize] or the function `double-mode'."
:set
(
lambda
(
symbol
value
)
(
double-mode
(
if
value
1
0
)))
:initialize
'custom-initialize-default
:link
'
(
emacs-commentary-link
"double"
)
:type
'boolean
:require
'double
:group
'double
)
(
make-variable-buffer-local
'double-mode
)
(
or
(
assq
'double-mode
minor-mode-alist
)
(
setq
minor-mode-alist
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment