diff options
| author | Juanma Barranquero | 2007-11-26 15:37:00 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-11-26 15:37:00 +0000 |
| commit | 2867910524be26279744d54d04ced7b4134eb7b6 (patch) | |
| tree | 4ff1e4212000811c4e873758110cc56141240fdd | |
| parent | dd9b0004426c5ad2603d606466a8d79ab80888af (diff) | |
| download | emacs-2867910524be26279744d54d04ced7b4134eb7b6.tar.gz emacs-2867910524be26279744d54d04ced7b4134eb7b6.zip | |
(batch-byte-recompile-directory): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 56c5a9cc35c..8668630578f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-11-26 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix. | ||
| 4 | |||
| 1 | 2007-11-24 Kenichi Handa <handa@m17n.org> | 5 | 2007-11-24 Kenichi Handa <handa@m17n.org> |
| 2 | 6 | ||
| 3 | * international/ucs-tables.el (ucs-8859-7-alist): Update the table. | 7 | * international/ucs-tables.el (ucs-8859-7-alist): Update the table. |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 493977304b1..032b37cb00f 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -974,7 +974,7 @@ Each function's symbol gets added to `byte-compile-noruntime-functions'." | |||
| 974 | (pos (if (and byte-compile-current-file | 974 | (pos (if (and byte-compile-current-file |
| 975 | (integerp byte-compile-read-position)) | 975 | (integerp byte-compile-read-position)) |
| 976 | (with-current-buffer byte-compile-current-buffer | 976 | (with-current-buffer byte-compile-current-buffer |
| 977 | (format "%d:%d:" | 977 | (format "%d:%d:" |
| 978 | (save-excursion | 978 | (save-excursion |
| 979 | (goto-char byte-compile-last-position) | 979 | (goto-char byte-compile-last-position) |
| 980 | (1+ (count-lines (point-min) (point-at-bol)))) | 980 | (1+ (count-lines (point-min) (point-at-bol)))) |
| @@ -1657,7 +1657,7 @@ The value is non-nil if there were no errors, nil if errors." | |||
| 1657 | byte-compile-dest-file) | 1657 | byte-compile-dest-file) |
| 1658 | (setq target-file (byte-compile-dest-file filename)) | 1658 | (setq target-file (byte-compile-dest-file filename)) |
| 1659 | (setq byte-compile-dest-file target-file) | 1659 | (setq byte-compile-dest-file target-file) |
| 1660 | (with-current-buffer | 1660 | (with-current-buffer |
| 1661 | (setq input-buffer (get-buffer-create " *Compiler Input*")) | 1661 | (setq input-buffer (get-buffer-create " *Compiler Input*")) |
| 1662 | (erase-buffer) | 1662 | (erase-buffer) |
| 1663 | (setq buffer-file-coding-system nil) | 1663 | (setq buffer-file-coding-system nil) |
| @@ -4185,7 +4185,7 @@ Must be used only with `-batch', and kills Emacs on completion. | |||
| 4185 | For example, invoke `emacs -batch -f batch-byte-recompile-directory .'. | 4185 | For example, invoke `emacs -batch -f batch-byte-recompile-directory .'. |
| 4186 | 4186 | ||
| 4187 | Optional argument ARG is passed as second argument ARG to | 4187 | Optional argument ARG is passed as second argument ARG to |
| 4188 | `batch-recompile-directory'; see there for its possible values | 4188 | `byte-recompile-directory'; see there for its possible values |
| 4189 | and corresponding effects." | 4189 | and corresponding effects." |
| 4190 | ;; command-line-args-left is what is left of the command line (startup.el) | 4190 | ;; command-line-args-left is what is left of the command line (startup.el) |
| 4191 | (defvar command-line-args-left) ;Avoid 'free variable' warning | 4191 | (defvar command-line-args-left) ;Avoid 'free variable' warning |