Skip to content

Commit

Permalink
* elisp-comp: Use bcomp.el.
Browse files Browse the repository at this point in the history
* bcomp.el: force to read files as iso-2022-7bit.

* Makefile.in: Specify -no-site-file.
  • Loading branch information
nawota committed May 30, 2008
1 parent 7ea870b commit f08ca53
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2008-05-31 Naohiro Aota <nao.aota@gmail.com>

* elisp-comp: Use bcomp.el.

* bcomp.el: force to read files as iso-2022-7bit.

2008-05-07 Naohiro Aota <nao.aota@gmail.com>

* navi2ch-util.el (navi2ch-propertize): navi2ch-propertize $B$rI|3h!#(B
Expand Down
4 changes: 2 additions & 2 deletions bcomp.el
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
(message "compiling...")
(dolist (elt bcomp-files)
(setq file (concat dir elt))
(byte-compile-file file t))

(let ((coding-system-for-read 'iso-2022-7bit))
(byte-compile-file file t)))
(message "done"))
4 changes: 4 additions & 0 deletions doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2008-05-31 Naohiro Aota <nao.aota@gmail.com>

* Makefile.in: Specify -no-site-file.

2008-03-03 Naohiro Aota <nao.aota@gmail.com>

* navi2ch.texi: @cindex $B$NDI2C!#(B@uref $B$K%?%$%H%k$rDI2C!#(B $BI=5-$N@55,(B
Expand Down
2 changes: 1 addition & 1 deletion doc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ uninstall-am: uninstall-info-am

.texi.info:
rm -f $(@)*
$(EMACS) -q -batch -l $(srcdir)/batch-texi2info.el \
$(EMACS) -q -no-site-file -batch -l $(srcdir)/batch-texi2info.el \
-f batch-texi2info $<

Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Expand Down
5 changes: 3 additions & 2 deletions elisp-comp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# Copyright (C) 1995, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.

scriptversion=2005-05-14.22
scriptversion=2008-05-31.01

# Franc,ois Pinard <pinard@iro.umontreal.ca>, 1995.
#
Expand Down Expand Up @@ -73,7 +73,8 @@ cp "$@" $tempdir
(
cd $tempdir
echo "(setq load-path (cons nil load-path))" > script
$EMACS -batch -q -l script -f batch-byte-compile *.el || exit $?
# $EMACS -batch -q -l script -f batch-byte-compile *.el || exit $?
$EMACS -batch -q -l script -l ../bcomp.el || exit $?
mv *.elc ..
) || exit $?

Expand Down

0 comments on commit f08ca53

Please sign in to comment.