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
25f67e4b
Commit
25f67e4b
authored
Mar 30, 1999
by
Karl Heuer
Browse files
*** empty log message ***
parent
495a3f8d
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
16 additions
and
16 deletions
+16
-16
lisp/abbrev.el
lisp/abbrev.el
+1
-1
lisp/autoinsert.el
lisp/autoinsert.el
+1
-1
lisp/avoid.el
lisp/avoid.el
+1
-1
lisp/delsel.el
lisp/delsel.el
+1
-1
lisp/font-lock.el
lisp/font-lock.el
+1
-1
lisp/hscroll.el
lisp/hscroll.el
+1
-1
lisp/icomplete.el
lisp/icomplete.el
+1
-1
lisp/mouse-sel.el
lisp/mouse-sel.el
+1
-1
lisp/paren.el
lisp/paren.el
+1
-1
lisp/rsz-mini.el
lisp/rsz-mini.el
+2
-2
lisp/time.el
lisp/time.el
+1
-1
lisp/type-break.el
lisp/type-break.el
+2
-2
lisp/which-func.el
lisp/which-func.el
+1
-1
lisp/winner.el
lisp/winner.el
+1
-1
No files found.
lisp/abbrev.el
View file @
25f67e4b
...
...
@@ -51,7 +51,7 @@ and be replaced by its expansion."
In abbrev mode, inserting an abbreviation causes it to expand
and be replaced by its expansion.
This variable should be set only with \\[customize], which is equivalent
to using the function `abbrev-mode'.
to using the function `abbrev-mode'.
"
:set
(
lambda
(
symbol
value
)
(
abbrev-mode
(
if
value
1
0
)))
:type
'boolean
...
...
lisp/autoinsert.el
View file @
25f67e4b
...
...
@@ -60,7 +60,7 @@
(
defcustom
auto-insert-mode
nil
"Toggle auto-insert-mode.
This variable should be set only with \\[customize], which is equivalent
to using the function `auto-insert-mode'.
to using the function `auto-insert-mode'.
"
:set
(
lambda
(
symbol
value
)
(
auto-insert-mode
(
or
value
0
)))
:initialize
'custom-initialize-default
...
...
lisp/avoid.el
View file @
25f67e4b
...
...
@@ -81,7 +81,7 @@
"Activate mouse avoidance mode.
See function `mouse-avoidance-mode' for possible values.
This variable should be set only with \\[customize], which is equivalent
to using the function `mouse-avoidance-mode'.
to using the function `mouse-avoidance-mode'.
"
:set
(
lambda
(
symbol
value
)
;; 'none below prevents toggling when value is nil.
(
mouse-avoidance-mode
(
or
value
'none
)))
...
...
lisp/delsel.el
View file @
25f67e4b
...
...
@@ -78,7 +78,7 @@ any selection."
"Toggle Delete Selection mode.
See command `delete-selection-mode'.
This variable should be set only with \\[customize], which is equivalent
to using the function `delete-selection-mode'.
to using the function `delete-selection-mode'.
"
:set
(
lambda
(
symbol
value
)
(
delete-selection-mode
(
or
value
0
)))
:initialize
'custom-initialize-default
...
...
lisp/font-lock.el
View file @
25f67e4b
...
...
@@ -843,7 +843,7 @@ turned on in a buffer if its major mode is one of `font-lock-global-modes'."
When Global Font Lock mode is enabled, Font Lock mode is automagically
turned on in a buffer if its major mode is one of `font-lock-global-modes'.
This variable should be set only with \\[customize], which is equivalent
to using the function `global-font-lock-mode'.
to using the function `global-font-lock-mode'.
"
:set
(
lambda
(
symbol
value
)
(
global-font-lock-mode
(
or
value
0
)))
:type
'boolean
...
...
lisp/hscroll.el
View file @
25f67e4b
...
...
@@ -62,7 +62,7 @@
(
defcustom
hscroll-global-mode
nil
"Toggle horizontal scrolling.
This variable should be set only with \\[customize], which is equivalent
to using the function `hscroll-global-mode'.
to using the function `hscroll-global-mode'.
"
:set
(
lambda
(
symbol
value
)
(
hscroll-global-mode
(
if
value
1
-1
)))
:initialize
'custom-initialize-default
...
...
lisp/icomplete.el
View file @
25f67e4b
...
...
@@ -78,7 +78,7 @@
As text is typed into the minibuffer, prospective completions are indicated
in the minibuffer.
This variable should be set only with \\[customize], which is equivalent
to using the function `icomplete-mode'.
to using the function `icomplete-mode'.
"
:set
(
lambda
(
symbol
value
)
(
icomplete-mode
(
if
value
1
-1
)))
:initialize
'custom-initialize-default
...
...
lisp/mouse-sel.el
View file @
25f67e4b
...
...
@@ -153,7 +153,7 @@
"Toggle Mouse Sel mode.
When Mouse Sel mode is enabled, mouse selection is enhanced in various ways.
This variable should be set only with \\[customize], which is equivalent
to using the function `mouse-sel-mode'.
to using the function `mouse-sel-mode'.
"
:set
(
lambda
(
symbol
value
)
(
mouse-sel-mode
(
or
value
0
)))
:initialize
'custom-initialize-default
...
...
lisp/paren.el
View file @
25f67e4b
...
...
@@ -45,7 +45,7 @@
When Show Paren mode is enabled, any matching parenthesis is highlighted
after `show-paren-delay' seconds of Emacs idle time.
This variable should be set only with \\[customize], which is equivalent
to using the function `show-paren-mode'.
to using the function `show-paren-mode'.
"
:set
(
lambda
(
symbol
value
)
(
show-paren-mode
(
or
value
0
)))
:initialize
'custom-initialize-default
...
...
lisp/rsz-mini.el
View file @
25f67e4b
...
...
@@ -7,7 +7,7 @@
;; Maintainer: Noah Friedman <friedman@splode.com>
;; Keywords: minibuffer, window, frame, display
;; $Id: rsz-mini.el,v 1.2
3
199
8
/0
9/11 01:40:25 friedman
Exp kwzh $
;; $Id: rsz-mini.el,v 1.2
4
199
9
/0
3/30 21:29:47 kwzh
Exp kwzh $
;; This file is part of GNU Emacs.
...
...
@@ -65,7 +65,7 @@
(
defcustom
resize-minibuffer-mode
nil
"Toggle resizing the minibuffer so its entire contents are visible.
This variable should be set only with \\[customize], which is equivalent
to using the function `resize-minibuffer-mode'.
to using the function `resize-minibuffer-mode'.
"
:set
(
lambda
(
symbol
value
)
(
resize-minibuffer-mode
(
if
value
1
-1
)))
:initialize
'custom-initialize-default
...
...
lisp/time.el
View file @
25f67e4b
...
...
@@ -37,7 +37,7 @@
(
defcustom
display-time-mode
nil
"Toggle display of time, load level, and mail flag in mode lines.
This variable should be set only with \\[customize], which is equivalent
to using the function `display-time-mode'.
to using the function `display-time-mode'.
"
:set
(
lambda
(
symbol
value
)
(
display-time-mode
(
or
value
0
)))
:initialize
'custom-initialize-default
...
...
lisp/type-break.el
View file @
25f67e4b
...
...
@@ -8,7 +8,7 @@
;; Status: Works in GNU Emacs 19.25 or later, some versions of XEmacs
;; Created: 1994-07-13
;; $Id: type-break.el,v 1.
19
199
8
/0
9/11 01:39:41 friedman
Exp kwzh $
;; $Id: type-break.el,v 1.
20
199
9
/0
3/30 21:30:05 kwzh
Exp kwzh $
;; This file is part of GNU Emacs.
...
...
@@ -79,7 +79,7 @@
"Toggle typing break mode.
See the docstring for the `type-break-mode' command for more information.
This variable should be set only with \\[customize], which is equivalent
to using the function `type-break-mode'.
to using the function `type-break-mode'.
"
:set
(
lambda
(
symbol
value
)
(
type-break-mode
(
if
value
1
-1
)))
:initialize
'custom-initialize-default
...
...
lisp/which-func.el
View file @
25f67e4b
...
...
@@ -105,7 +105,7 @@ Zero means compute the Imenu menu regardless of size."
(
defcustom
which-func-mode-global
nil
"*Toggle `which-func-mode'.
This variable should be set only with \\[customize], which is equivalent
to using the function `which-func-mode'.
to using the function `which-func-mode'.
"
:set
#'
(
lambda
(
symbol
value
)
(
which-func-mode
(
if
value
1
0
)))
:initialize
'custom-initialize-default
...
...
lisp/winner.el
View file @
25f67e4b
...
...
@@ -56,7 +56,7 @@
(
defcustom
winner-mode
nil
"Toggle winner-mode.
This variable should be set only with \\[customize], which is equivalent
to using the function `winner-mode'.
to using the function `winner-mode'.
"
:set
#'
(
lambda
(
symbol
value
)
(
winner-mode
(
or
value
0
)))
:initialize
'custom-initialize-default
...
...
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