+2002-12-12 Dave Love <fx@gnu.org>
+
+ * custom.el (defcustom, custom-set-variables): Doc fix.
+
+ * emacs-lisp/bytecomp.el (byte-compile-if): Suppress warnings from
+ things protected by `(if (fboundp ...' or `(if (boundp ...'.
+
+ * emacs-lisp/byte-opt.el (byte-optimize-featurep): New.
+
2002-12-12 Glenn Morris <gmorris@ast.cam.ac.uk>
* progmodes/fortran.el (fortran-mode-abbrev-table): Handle
(defun byte-inline-lapcode (lap)
(setq byte-compile-output (nconc (nreverse lap) byte-compile-output)))
-
(defun byte-compile-inline-expand (form)
(let* ((name (car form))
(fn (or (cdr (assq name byte-compile-function-environment))
form)))
;; Avoid having to write forward-... with a negative arg for speed.
+;; Fixme: don't be limited to constant args.
(put 'backward-char 'byte-optimizer 'byte-optimize-backward-char)
(defun byte-optimize-backward-char (form)
(cond ((and (= 2 (safe-length form))
((= 1 (safe-length form))
'(char-after (1- (point))))
(t form)))
+
+;; Fixme: delete-char -> delete-region (byte-coded)
+;; optimize string-as-unibyte, string-as-multibyte, string-make-unibyte,
+;; string-make-multibyte for constant args.
+
+(put 'featurep 'byte-optimizer 'byte-optimize-featurep)
+(defun byte-optimize-featurep (form)
+ (if (equal '((quote xemacs)) (cdr-safe form))
+ nil
+ form))
\f
;;; enumerating those functions which need not be called if the returned
;;; value is not used. That is, something like