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
aabf6bec
Commit
aabf6bec
authored
Nov 11, 1994
by
Karl Heuer
Browse files
Fix typo in previous change.
parent
08b1edf4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/data.c
src/data.c
+4
-4
No files found.
src/data.c
View file @
aabf6bec
...
...
@@ -464,8 +464,8 @@ DEFUN ("boundp", Fboundp, Sboundp, 1, 1, 0, "T if SYMBOL's value is not void.")
valcontents
=
XSYMBOL
(
sym
)
->
value
;
if
(
LISP_
BUFFER_LOCAL_VALUEP
(
valcontents
)
||
LISP_
SOME_BUFFER_LOCAL_VALUEP
(
valcontents
))
if
(
BUFFER_LOCAL_VALUEP
(
valcontents
)
||
SOME_BUFFER_LOCAL_VALUEP
(
valcontents
))
valcontents
=
swap_in_symval_forwarding
(
sym
,
valcontents
);
return
(
EQ
(
valcontents
,
Qunbound
)
?
Qnil
:
Qt
);
...
...
@@ -758,8 +758,8 @@ find_symbol_value (sym)
CHECK_SYMBOL
(
sym
,
0
);
valcontents
=
XSYMBOL
(
sym
)
->
value
;
if
(
LISP_
BUFFER_LOCAL_VALUEP
(
valcontents
)
||
LISP_
SOME_BUFFER_LOCAL_VALUEP
(
valcontents
))
if
(
BUFFER_LOCAL_VALUEP
(
valcontents
)
||
SOME_BUFFER_LOCAL_VALUEP
(
valcontents
))
valcontents
=
swap_in_symval_forwarding
(
sym
,
valcontents
);
if
(
MISCP
(
valcontents
))
...
...
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