diff options
| author | Kenichi Handa | 2008-02-12 11:25:01 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-02-12 11:25:01 +0000 |
| commit | da9e269f680d29d1faa2fcf42d6197b248bc208f (patch) | |
| tree | 31db6b5ac05b0d92e3e16265d4af9db8f0deec5a | |
| parent | 926f559c272e746331cdb4b82d99e5690564af3c (diff) | |
| download | emacs-da9e269f680d29d1faa2fcf42d6197b248bc208f.tar.gz emacs-da9e269f680d29d1faa2fcf42d6197b248bc208f.zip | |
(byte-compile-lapcode): Use
unibyte-string instead of string-make-unibyte.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a751d1b3dfc..44b843e7ebb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -6,6 +6,9 @@ | |||
| 6 | 6 | ||
| 7 | 2008-02-12 Kenichi Handa <handa@ni.aist.go.jp> | 7 | 2008-02-12 Kenichi Handa <handa@ni.aist.go.jp> |
| 8 | 8 | ||
| 9 | * emacs-lisp/bytecomp.el (byte-compile-lapcode): Use | ||
| 10 | unibyte-string instead of string-make-unibyte. | ||
| 11 | |||
| 9 | * Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el. | 12 | * Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el. |
| 10 | 13 | ||
| 11 | 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca> | 14 | 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca> |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index f32671bc784..356f0d7890b 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -864,7 +864,7 @@ otherwise pop it") | |||
| 864 | (setcar (cdr bytes) (logand pc 255)) | 864 | (setcar (cdr bytes) (logand pc 255)) |
| 865 | (setcar bytes (lsh pc -8)))) | 865 | (setcar bytes (lsh pc -8)))) |
| 866 | (setq patchlist (cdr patchlist)))) | 866 | (setq patchlist (cdr patchlist)))) |
| 867 | (string-make-unibyte (concat (nreverse bytes))))) | 867 | (apply 'unibyte-string (nreverse bytes)))) |
| 868 | 868 | ||
| 869 | 869 | ||
| 870 | ;;; compile-time evaluation | 870 | ;;; compile-time evaluation |