Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5c213454
Commit
5c213454
authored
Jun 24, 1998
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(auto-insert, auto-insert-query): Use `other'
widget type.
parent
6114e627
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/autoinsert.el
lisp/autoinsert.el
+4
-4
No files found.
lisp/autoinsert.el
View file @
5c213454
...
...
@@ -80,16 +80,16 @@ when you do (add-hook 'find-file-hooks 'auto-insert).
With \\[auto-insert], this is always treated as if it were `t'."
:type
'
(
choice
(
const
:tag
"Insert if possible"
t
)
(
const
:tag
"Do nothing"
nil
)
(
const
:tag
"insert if possible, mark as unmodified."
(
other
:tag
"insert if possible, mark as unmodified."
not-modified
))
:group
'auto-insert
)
(
defcustom
auto-insert-query
'function
"*If non-`nil', ask user before auto-inserting.
When this is `function', only ask when called non-interactively."
:type
'
(
choice
(
const
:tag
"
A
sk"
t
)
(
const
:tag
"
Don't ask"
nil
)
(
const
:tag
"Ask
if called non-interactively"
function
))
:type
'
(
choice
(
const
:tag
"
Don't a
sk"
nil
)
(
const
:tag
"
Ask if called non-interactively"
function
)
(
other
:tag
"Ask
"
t
))
:group
'auto-insert
)
(
defcustom
auto-insert-prompt
"Perform %s auto-insertion? "
...
...
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