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
1be4d761
Commit
1be4d761
authored
Apr 01, 2011
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
that is set but not used.
parent
1f7196bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+3
-0
src/bytecode.c
src/bytecode.c
+3
-1
No files found.
src/ChangeLog
View file @
1be4d761
2011-04-01 Paul Eggert <eggert@cs.ucla.edu>
* bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
that is set but not used.
* print.c (print_object): Remove var that is set but not used.
Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
src/bytecode.c
View file @
1be4d761
...
...
@@ -425,8 +425,8 @@ If the third argument is incorrect, Emacs may crash. */)
#ifdef BYTE_CODE_SAFE
int
const_length
=
XVECTOR
(
vector
)
->
size
;
Lisp_Object
*
stacke
;
#endif
int
bytestr_length
;
#endif
struct
byte_stack
stack
;
Lisp_Object
*
top
;
Lisp_Object
result
;
...
...
@@ -453,7 +453,9 @@ If the third argument is incorrect, Emacs may crash. */)
convert them back to the originally intended unibyte form. */
bytestr
=
Fstring_as_unibyte
(
bytestr
);
#ifdef BYTE_CODE_SAFE
bytestr_length
=
SBYTES
(
bytestr
);
#endif
vectorp
=
XVECTOR
(
vector
)
->
contents
;
stack
.
byte_string
=
bytestr
;
...
...
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