emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109609: * lisp/emacs-lisp/bytecomp.e


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109609: * lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
Date: Tue, 14 Aug 2012 08:58:46 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109609
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2012-08-14 08:58:46 -0700
message:
  * lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/bytecomp.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-08-14 14:48:28 +0000
+++ b/lisp/ChangeLog    2012-08-14 15:58:46 +0000
@@ -1,3 +1,7 @@
+2012-08-14  Glenn Morris  <address@hidden>
+
+       * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
+
 2012-08-14  Michael Albinus  <address@hidden>
 
        * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
@@ -7,8 +11,7 @@
 2012-08-14  Fabián Ezequiel Gallina  <address@hidden>
 
        * progmodes/python.el (python-shell-send-string):
-       (python-shell-send-setup-code): Do not use `format' with
-       `message'.
+       (python-shell-send-setup-code): Do not use `format' with `message'.
 
 2012-08-14  Dmitry Gutov  <address@hidden>
 

=== modified file 'lisp/emacs-lisp/bytecomp.el'
--- a/lisp/emacs-lisp/bytecomp.el       2012-08-14 08:37:41 +0000
+++ b/lisp/emacs-lisp/bytecomp.el       2012-08-14 15:58:46 +0000
@@ -1621,21 +1621,20 @@
   "Recompile FILENAME file if it needs recompilation.
 This happens when its `.elc' file is older than itself.
 
-If the `.elc' file exists and is up-to-date, normally this
-function *does not* compile FILENAME. However, if the
-prefix argument FORCE is set, that means do compile
-FILENAME even if the destination already exists and is
-up-to-date.
-
-If the `.elc' file does not exist, normally this function *does
-not* compile FILENAME. If ARG is 0, that means
-compile the file even if it has never been compiled before.
-A nonzero ARG means ask the user.
-
-If LOAD is non-nil, `load' the file after compiling.
-
-The value returned is the value returned by `byte-compile-file',
-or 'no-byte-compile if the file did not need recompilation."
+If the `.elc' file exists and is up-to-date, normally this function
+*does not* compile FILENAME.  If the prefix argument FORCE is non-nil,
+however, it compiles FILENAME even if the destination already
+exists and is up-to-date.
+
+If the `.elc' file does not exist, normally this function *does not*
+compile FILENAME.  If optional argument ARG is 0, it compiles
+the input file even if the `.elc' file does not exist.
+Any other non-nil value of ARG means to ask the user.
+
+If optional argument LOAD is non-nil, loads the file after compiling.
+
+If compilation is needed, this functions returns the result of
+`byte-compile-file'; otherwise it returns 'no-byte-compile."
   (interactive
    (let ((file buffer-file-name)
         (file-name nil)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]