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
8890e5f5
Commit
8890e5f5
authored
Jul 25, 2009
by
Ken Raeburn
Browse files
* coding.h (decode_coding_string, encode_coding_string): Use
SCHARS macro.
parent
2baf5e76
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
src/ChangeLog
src/ChangeLog
+3
-0
src/coding.h
src/coding.h
+2
-2
No files found.
src/ChangeLog
View file @
8890e5f5
2009-07-25 Ken Raeburn <raeburn@raeburn.org>
* coding.h (decode_coding_string, encode_coding_string): Use
SCHARS macro.
* lread.c: Rewrite 2009-07-21 changes.
(load_depth): Deleted.
(Qload_in_progress): New variable.
...
...
src/coding.h
View file @
8890e5f5
...
...
@@ -734,11 +734,11 @@ extern void encode_coding_object P_ ((struct coding_system *,
#define decode_coding_string(coding, string, nocopy) \
decode_coding_object (coding, string, 0, 0,
XSTRING
(string)
->size
, \
decode_coding_object (coding, string, 0, 0,
SCHARS
(string),
\
STRING_BYTES (XSTRING (string)), Qt)
#define encode_coding_string(coding, string, nocopy) \
(encode_coding_object (coding, string, 0, 0,
XSTRING
(string)
->size
, \
(encode_coding_object (coding, string, 0, 0,
SCHARS
(string),
\
STRING_BYTES (XSTRING (string)), Qt), \
(coding)->dst_object)
...
...
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