annotate lisp/patcomp.el @ 43578:fa66c2edee4d emacs-unicode-base

Clarify gamma correction.
author Richard M. Stallman <rms@gnu.org>
date Wed, 27 Feb 2002 05:29:00 +0000
parents 67b464da13ec
children 33d53d287ee4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22388
2d0bece94ee7 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 22387
diff changeset
1 ;;; patcomp.el --- used by patch files to update Emacs releases
10015
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
38414
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 22388
diff changeset
3 ;; This file is part of GNU Emacs.
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 22388
diff changeset
4
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 22388
diff changeset
5 ;;; Commentary:
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 22388
diff changeset
6
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 22388
diff changeset
7 ;;; Code:
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 22388
diff changeset
8
10015
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 (defun batch-byte-recompile-emacs ()
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 "Recompile the Emacs `lisp' directory.
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 This is used after installing the patches for a new version."
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 (let ((load-path (list (expand-file-name "lisp"))))
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 (byte-recompile-directory "lisp")))
10016
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
14
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
15 (defun batch-byte-compile-emacs ()
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
16 "Compile new files installed in the Emacs `lisp' directory.
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
17 This is used after installing the patches for a new version.
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
18 It uses the command line arguments to specify the files to compile."
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
19 (let ((load-path (list (expand-file-name "lisp"))))
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
20 (batch-byte-compile)))
38414
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 22388
diff changeset
21
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 22388
diff changeset
22 ;;; patcomp.el ends here