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
9e677988
Commit
9e677988
authored
Aug 19, 2012
by
Andreas Schwab
Browse files
* data.c (set_internal): Don't use set_blv_found.
(Fkill_local_variable): Likewise.
parent
17975d7f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
src/ChangeLog
src/ChangeLog
+5
-0
src/data.c
src/data.c
+3
-3
No files found.
src/ChangeLog
View file @
9e677988
2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
* data.c (set_internal): Don't use set_blv_found.
(Fkill_local_variable): Likewise.
2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
* nsfont.m (ns_ascii_average_width): Ensure the string
...
...
src/data.c
View file @
9e677988
...
...
@@ -1184,7 +1184,7 @@ set_internal (register Lisp_Object symbol, register Lisp_Object newval, register
?
XFRAME
(
where
)
->
param_alist
:
BVAR
(
XBUFFER
(
where
),
local_var_alist
)));
set_blv_where
(
blv
,
where
);
set_
blv
_
found
(
blv
,
1
)
;
blv
->
found
=
1
;
if
(
NILP
(
tem1
))
{
...
...
@@ -1199,7 +1199,7 @@ set_internal (register Lisp_Object symbol, register Lisp_Object newval, register
if
(
bindflag
||
!
blv
->
local_if_set
||
let_shadows_buffer_binding_p
(
sym
))
{
set_
blv
_
found
(
blv
,
0
)
;
blv
->
found
=
0
;
tem1
=
blv
->
defcell
;
}
/* If it's a local_if_set, being set not bound,
...
...
@@ -1735,7 +1735,7 @@ From now on the default value will apply in this buffer. Return VARIABLE. */)
if
(
EQ
(
buf
,
blv
->
where
))
{
set_blv_where
(
blv
,
Qnil
);
set_
blv
_
found
(
blv
,
0
)
;
blv
->
found
=
0
;
find_symbol_value
(
variable
);
}
}
...
...
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