summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/bytecomp.el
Commit message (Collapse)AuthorAgeFilesLines
...
* (byte-compile-file): Return nil on failure.Karl Heuer1994-02-231-2/+2
|
* (byte-compile-condition-case): Disable warning aboutRichard M. Stallman1994-01-111-8/+16
| | | | symbol not naming a condition. Allow a list of condition names.
* [ms-dos] (byte-compile-file): Save as binary.Richard M. Stallman1994-01-061-0/+2
|
* Comment fix.Richard M. Stallman1994-01-041-2/+0
|
* Provide bytecomp as well as byte-compile.Richard M. Stallman1993-12-251-0/+1
|
* (byte-compile-dest-file): If FILENAME is not recognized, append .elc to it.Richard M. Stallman1993-12-231-2/+4
| | | | | | (byte-recompile-directory): Don't treat symlinks as dirs. (batch-byte-recompile-directory): Add autoload cookie.
* (byte-compile-from-buffer): Set float-output-format toRichard M. Stallman1993-08-111-1/+1
| | | | nil, not "%.20e", since nil is guaranteed to not lose info on output.
* `mod' is no longer an alias for `%'.Paul Eggert1993-08-101-2/+0
|
* (byte-recompile-directory): At end of compiling a file,Richard M. Stallman1993-08-021-0/+2
| | | | put back the "Checking DIR..." message.
* (byte-recompile-directory): Doc fix.Richard M. Stallman1993-07-271-1/+4
|
* * bytecomp.el (byte-compile-from-buffer): Bind float-output-formatJim Blandy1993-07-181-1/+1
| | | | | to "%.20e", not "%20e"; the latter is always ignored, since it doesn't have a decimal point after the percent sign.
* (byte-compile-file-form-defmumble): Undo previous change.Richard M. Stallman1993-07-091-2/+1
| | | | It turns out the second arg was put in by mistake in the first place.
* (byte-compile-setq-default):Richard M. Stallman1993-07-091-10/+10
| | | | | | Generate a progn of calls to set-default, then compile it. (byte-compile-file-form-defmumble): Put back second arg of byte-compile-keep-pending, accidentally deleted before.
* (byte-compile-setq-default): Handle multiple pairs args like setq (asRoland McGrath1993-07-071-3/+9
| | | | the setq-default subr does).
* (byte-compile-keep-pending): Handle fset like defalias.Richard M. Stallman1993-07-021-3/+4
| | | | (byte-compile-file-form-defmumble): Fix backward if in prev change.
* (byte-compile-file-form-defmumble):Richard M. Stallman1993-07-011-2/+6
| | | | If byte-compile-compatibility, use fset, not defalias.
* (byte-compile-file-form-defmumble): Typo in prev change.Richard M. Stallman1993-06-161-2/+1
|
* (byte-compile-file-form-defmumble): Use defaliasRichard M. Stallman1993-06-151-1/+1
| | | | for named function, even if no doc string.
* (byte-compile-file): Undo previous change.Richard M. Stallman1993-06-131-13/+6
| | | | (batch-byte-recompile-directory): Doc fix.
* * bytecomp.el: Bring it up to version 2.10 of theJim Blandy1993-06-111-33/+82
| | | | Zawinski-Furuseth compiler. Changes from David Gillespie.
* Apply typo patches from Paul Eggert.Jim Blandy1993-06-091-4/+4
|
* (byte-compile-insert-header): Fix backwards testRichard M. Stallman1993-06-031-1/+1
| | | | of byte-compile-compatibility.
* (byte-compile-file): Don't write output if error.Richard M. Stallman1993-05-181-36/+37
|
* (byte-compile-file): Don't write output if error.Richard M. Stallman1993-05-181-35/+35
|
* (byte-compile-track-mouse): New function.Richard M. Stallman1993-05-151-0/+10
| | | | This is a kludge; track-mouse must be compiled better.
* (byte-recompile-directory): If ARG is non-nil, set it to its prefixRoland McGrath1993-05-101-2/+4
| | | | numeric value. Test for ARG being zero with eq, not zerop.
* * bytecomp.el (meta-flag): Declare this an obsolete variable.Jim Blandy1993-05-031-1/+2
| | | | | * bytecomp.el: The `suspend-hooks' variable is obsolete now, and `suspend-hook' is the right name.
* (define-function): Changed name back to defalisaases to get things inEric S. Raymond1993-04-231-6/+7
| | | | a known-good state.
* (byte-compile, byte-compile-keep-pending)Richard M. Stallman1993-04-171-6/+6
| | | | | (byte-compile-file-form-defmumble): Generate define-function rather than fset, to install definitions for defun, defmacro, etc.
* Added or corrected Commentary sectionsEric S. Raymond1993-03-221-0/+6
|
* * simple.el (comment-indent-function): New variable, intended toJim Blandy1993-03-211-0/+1
| | | | | | | | | replace comment-indent-hook. (comment-indent-hook): Make this default to nil now. (indent-for-comment): If comment-indent-hook is non-nil, call it for backward compatibility; otherwise, call comment-indent-function. * bytecomp.el: Declare comment-indent-hook an obsolete variable.
* Doc fix.Jim Blandy1993-03-161-1/+1
|
* * bytecomp.el (byte-compile-from-buffer): Put buffer containingJim Blandy1993-03-161-1/+9
| | | | compiled code in binary overwrite mode.
* * bytecomp.el: Declare suspend-hook to be an obsolete variable.Jim Blandy1993-03-111-0/+1
|
* Removed assigment to foo in byte-compile-lambda.Jim Blandy1993-02-231-1/+0
|
* (byte-compile-lambda): Test of byte-compile-compatibility was backwards.Richard M. Stallman1993-02-171-2/+3
|
* * disass.el (disassemble): Add autoload cookie for this.Jim Blandy1993-01-261-9/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bytecomp.el (byte-decompile-bytecode): Add an autoload for this. compiled-function-p has been renamed to byte-code-function-p. * subr.el: Define compiled-function-p as an alias for it. * bytecomp.el: Register compiled-function-p as obsolete. * bytecomp.el, byte-opt.el, disass.el, help.el, map-ynp.el: Change uses. unread-command-event has been replaced by unread-command-events. * simple.el (prefix-arg-internal): Use this to push back all key sequences for processing by the main command loop, instead of trying to simulate its behavior ourselves. * bytecomp.el: Document unread-command-event as an obsolete variable, although nothing but the GNU Emacs 19 sources use it. Adjust obsolescence message for unread-command-char. * comint.el (comint-dynamic-list-completions): Change uses of unread-command-event to work with unread-command-events. * ebuff-menu.el (electric-buffer-list, Electric-buffer-menu-exit): Same. * edebug.el (edebug-outside-excursion): Same. * ehelp.el (electric-help-command-loop): Same. * electric.el (Electric-command-loop): Same. * emerge.el (emerge-show-file-name): Same. * fortran.el (fortran-abbrev-start, fortran-window-create-momentarily): Same. * gnus.el (gnus-Subject-next-article): Same. * info.el (Info-summary): Same. * isearch-mode.el (isearch-update, isearch-unread): Same. * map-ynp.el (map-y-or-n-p): Same. * mlsupport.el (push-back-character): Same. * replace.el (perform-replace): Same. * simula.el (simula-electric-label): Same. * subr.el (read-quoted-char, momentary-string-display): Same. * sun-mouse.el (mouse-second-hit): Same. * terminal.el (te-escape-extended-command-unread): Same. * vip.el (vip-escape-to-emacs, vip-prefix-arg-value, vip-prefix-arg-com): Same.
* * bytecomp.el: Declare unread-command-char an obsolete variable.Jim Blandy1992-11-161-0/+4
| | | | * bytecomp.el: (require 'backquote).
* (byte-compile-lambda):Richard M. Stallman1992-10-311-3/+10
| | | | Don't compile the interactive spec if it is a call to `list'.
* entered into RCSRichard M. Stallman1992-09-131-16/+25
|
* *** empty log message ***Jim Blandy1992-08-121-48/+101
|
* *** empty log message ***Jim Blandy1992-08-051-2/+1
|
* *** empty log message ***Jim Blandy1992-08-041-26/+43
|
* *** empty log message ***Jim Blandy1992-07-221-44/+1
|
* *** empty log message ***Eric S. Raymond1992-07-221-5/+13
|
* *** empty log message ***Richard M. Stallman1992-07-191-11/+29
|
* *** empty log message ***Richard M. Stallman1992-07-151-314/+275
|
* Initial revisionJim Blandy1992-07-101-0/+3000