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
da9e269f
Commit
da9e269f
authored
Feb 12, 2008
by
Kenichi Handa
Browse files
(byte-compile-lapcode): Use
unibyte-string instead of string-make-unibyte.
parent
926f559c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/bytecomp.el
+1
-1
No files found.
lisp/ChangeLog
View file @
da9e269f
...
...
@@ -6,6 +6,9 @@
2008-02-12 Kenichi Handa <handa@ni.aist.go.jp>
* emacs-lisp/bytecomp.el (byte-compile-lapcode): Use
unibyte-string instead of string-make-unibyte.
* Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el.
2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
...
...
lisp/emacs-lisp/bytecomp.el
View file @
da9e269f
...
...
@@ -864,7 +864,7 @@ otherwise pop it")
(
setcar
(
cdr
bytes
)
(
logand
pc
255
))
(
setcar
bytes
(
lsh
pc
-8
))))
(
setq
patchlist
(
cdr
patchlist
))))
(
string-make-unibyte (concat
(nreverse bytes))))
)
(
apply
'unibyte-string
(
nreverse
bytes
))))
;;; compile-time evaluation
...
...
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