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
4
Issues
4
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
db352ce6
Commit
db352ce6
authored
Jun 24, 1998
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ad-redefinition-action,
ad-default-compilation-action): Use `other' widget type.
parent
b2cd9961
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
lisp/emacs-lisp/advice.el
lisp/emacs-lisp/advice.el
+4
-3
No files found.
lisp/emacs-lisp/advice.el
View file @
db352ce6
...
...
@@ -1849,7 +1849,8 @@ old original, or keep it and raise an error. The values `accept', `discard',
`error' or `warn' govern what will be done. `warn' is just like `accept' but
it additionally prints a warning message. All other values will be
interpreted as `error'."
:type
'
(
choice
(
const
accept
)
(
const
discard
)
(
const
error
)
(
const
warn
))
:type
'
(
choice
(
const
accept
)
(
const
discard
)
(
const
warn
)
(
other
:tag
"error"
error
))
:group
'advice
)
;;;###autoload
...
...
@@ -1861,8 +1862,8 @@ loaded, and `like-original' will compile if the original definition of the
advised function is compiled or a built-in function. Every other value will
be interpreted as `maybe'. This variable will only be considered if the
COMPILE argument of `ad-activate' was supplied as nil."
:type
'
(
choice
(
const
always
)
(
const
never
)
(
const
maybe
)
(
const
like-original
))
:type
'
(
choice
(
const
always
)
(
const
never
)
(
const
like-original
)
(
other
:tag
"maybe"
maybe
))
:group
'advice
)
...
...
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