* vc-rcs.el (vc-rcs-register): Fix handling of
vc-[rcs-]register-switches.
- (vc-rcs-checkin-switches, vc-rcs-checkout-switches): Variables
- removed, since they weren't used yet.
+ (vc-rcs-checkin-switches, vc-rcs-checkout-switches):
+ Variables removed, since they weren't used yet.
* vc-cvs.el (vc-cvs-register): Fix handling of
vc-[cvs-]register-switches.
2002-03-18 Stefan Monnier <monnier@cs.yale.edu>
+ * loadup.el ("emacs-lisp/backquote"): Load earlier.
+ ("international/ucs-tables"): Load and turn on
+ unify-8859-on-encoding-mode unconditionally.
+ (emacs-version): Use `defconst' rather than `setq'.
+
* eshell/esh-ext.el (eshell-binary-suffixes): Use exec-suffixes.
2002-03-18 Richard M. Stallman <rms@gnu.org>
(message "Using load-path %s" load-path)
-;;; We don't want to have any undo records in the dumped Emacs.
+;; We don't want to have any undo records in the dumped Emacs.
(buffer-disable-undo "*scratch*")
(load "byte-run")
+(load "emacs-lisp/backquote")
(load "subr")
;; We specify .el in case someone compiled version.el by mistake.
(load "widget")
(load "custom")
-(load "emacs-lisp/backquote")
(load "map-ynp")
(load "env")
(load "cus-start")
(load "language/misc-lang")
(load "language/utf-8-lang")
(load "language/georgian")
+
+(load "international/ucs-tables")
+(unify-8859-on-encoding-mode 1)
+
(update-coding-systems-internal)
(load "indent")
(versions (mapcar (function (lambda (name)
(string-to-int (substring name (length base)))))
files)))
- (setq emacs-version (format "%s.%d"
- emacs-version
- (if versions
- (1+ (apply 'max versions))
- 1)))))
+ ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
+ (defconst emacs-version
+ (format "%s.%d"
+ emacs-version (if versions (1+ (apply 'max versions)) 1)))))
;; Note: all compiled Lisp files loaded above this point
;; must be among the ones parsed by make-docfile
(eval top-level)
+\f
+;;; Local Variables:
+;;; no-byte-compile: t
+;;; no-update-autoloads: t
+;;; End:
;;; loadup.el ends here