mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 01:34:21 +00:00
(byte-compile-lapcode): Use
unibyte-string instead of string-make-unibyte.
This commit is contained in:
parent
926f559c27
commit
da9e269f68
2 changed files with 4 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue