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
5e84269a
Commit
5e84269a
authored
Aug 01, 1994
by
Roland McGrath
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Ffset): Don't call Fget unless SYM's plist is consp.
parent
60f312e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/data.c
src/data.c
+1
-1
No files found.
src/data.c
View file @
5e84269a
...
...
@@ -556,7 +556,7 @@ DEFUN ("fset", Ffset, Sfset, 2, 2, 0,
Vautoload_queue
);
XSYMBOL
(
sym
)
->
function
=
newdef
;
/* Handle automatic advice activation */
if
(
!
NILP
(
Fget
(
sym
,
Qadvice_info
)))
if
(
CONSP
(
XSYMBOL
(
sym
)
->
plist
)
&&
!
NILP
(
Fget
(
sym
,
Qadvice_info
)))
{
call2
(
Qactivate_advice
,
sym
,
Fbyte_code_function_p
(
newdef
));
newdef
=
XSYMBOL
(
sym
)
->
function
;
...
...
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