diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-06-05 00:25:19 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-06-05 00:25:19 +0000 |
commit | 9dff2aaa5e058fbc6280ad22375153a05db71bb5 (patch) | |
tree | 80ece1c75473c063d22d022bc867ff23e8c858b0 /src | |
parent | 44f015d2a4d6dc0401561d2f04bd56dc49ab45e4 (diff) | |
download | emacs-9dff2aaa5e058fbc6280ad22375153a05db71bb5.tar.gz |
(Fmake_local_variable): Delete stray semicolon.
Diffstat (limited to 'src')
-rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 49e1570c4c2..471df20cd48 100644 --- a/src/data.c +++ b/src/data.c @@ -1575,7 +1575,7 @@ Instead, use `add-hook' and specify t for the LOCAL argument. */) XBUFFER_LOCAL_VALUE (newval)->found_for_frame = 0; XBUFFER_LOCAL_VALUE (newval)->check_frame = 0; XBUFFER_LOCAL_VALUE (newval)->cdr = tem; - SET_SYMBOL_VALUE (variable, newval);; + SET_SYMBOL_VALUE (variable, newval); } /* Make sure this buffer has its own value of symbol. */ tem = Fassq (variable, current_buffer->local_var_alist); |