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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
12394086
Commit
12394086
authored
Nov 30, 1999
by
Dave Love
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor doc fixes.
(auto-insert): Return nil.
parent
eb88a06d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
14 deletions
+17
-14
lisp/autoinsert.el
lisp/autoinsert.el
+17
-14
No files found.
lisp/autoinsert.el
View file @
12394086
...
...
@@ -32,7 +32,7 @@
;; default text much as the mode is automatically set using
;; auto-mode-alist.
;;
;; To use:
;; To use:
;; (add-hook 'find-file-hooks 'auto-insert)
;; setq auto-insert-directory to an appropriate slash-terminated value
;;
...
...
@@ -46,7 +46,7 @@
;; Box 3709
;; Duke University Medical Center
;; Durham, NC 27710
;; (crm@cs.duke.edu,mcnc!duke!crm)
;; (crm@cs.duke.edu,mcnc!duke!crm)
;;; Code:
...
...
@@ -58,7 +58,7 @@
(
defcustom
auto-insert-mode
nil
"Toggle
auto-insert-
mode.
"Toggle
Auto-insert
mode.
Setting this variable directly does not take effect;
use either \\[customize] or the function `auto-insert-mode'."
:set
(
lambda
(
symbol
value
)
...
...
@@ -69,7 +69,8 @@ use either \\[customize] or the function `auto-insert-mode'."
:require
'autoinsert
)
(
defcustom
auto-insert
'not-modified
"*Controls automatic insertion into newly found empty files:
"*Controls automatic insertion into newly found empty files.
Possible values:
nil do nothing
t insert if possible
other insert if possible, but mark as unmodified.
...
...
@@ -78,15 +79,15 @@ Insertion is possible when something appropriate is found in
save it with \\[write-file] RET.
This variable is used when `auto-insert' is called as a function, e.g.
when you do (add-hook 'find-file-hooks 'auto-insert).
With \\[auto-insert], this is always treated as if it were
`t'
."
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
)
(
other
: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.
"*
Non-nil means
ask user before auto-inserting.
When this is `function', only ask when called non-interactively."
:type
'
(
choice
(
const
:tag
"Don't ask"
nil
)
(
const
:tag
"Ask if called non-interactively"
function
)
...
...
@@ -264,7 +265,10 @@ Matches the visited file name against the elements of `auto-insert-alist'."
(
vector
action
))))
(
and
(
buffer-modified-p
)
(
not
(
eq
this-command
'auto-insert
))
(
set-buffer-modified-p
(
eq
auto-insert
t
))))))
(
set-buffer-modified-p
(
eq
auto-insert
t
)))))
;; Return nil so that it could be used in
;; `find-file-not-found-hooks', though that's probably inadvisable.
nil
)
;;;###autoload
...
...
@@ -289,11 +293,11 @@ or if CONDITION had no actions, after all other CONDITIONs."
;;;###autoload
(
defun
auto-insert-mode
(
&optional
arg
)
"Toggle
a
uto-insert mode.
With prefix ARG, turn
a
uto-insert mode on if and only if ARG is positive.
Returns the new status of
a
uto-insert mode (non-nil means on).
"Toggle
A
uto-insert mode.
With prefix ARG, turn
A
uto-insert mode on if and only if ARG is positive.
Returns the new status of
A
uto-insert mode (non-nil means on).
When
a
uto-insert mode is enabled, when new files are created you can
When
A
uto-insert mode is enabled, when new files are created you can
insert a template for the file depending on the mode of the buffer."
(
interactive
"P"
)
(
let
((
on-p
(
if
arg
...
...
@@ -304,8 +308,7 @@ insert a template for the file depending on the mode of the buffer."
(
remove-hook
'find-file-hooks
'auto-insert
))
(
if
(
interactive-p
)
(
message
"Auto-insert now %s."
(
if
on-p
"on"
"off"
)))
(
setq
auto-insert-mode
on-p
)
))
(
setq
auto-insert-mode
on-p
)))
(
if
auto-insert-mode
(
auto-insert-mode
1
))
...
...
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