Fix completing-read call in reb-change-syntax
[emacs.git] / lisp / ldefs-boot-manual.el
blob2f6e3fd2094847fdb7bc68f109833da3e858a031
1 ;; These appear to be necessary as they are used elsewhere in macro definitions.
2 (load "emacs-lisp/gv.el")
3 (load "emacs-lisp/nadvice.el")
4 (load "emacs-lisp/inline.el")
6 ;; This variable is used by bytecomp.el
7 (defvar warning-series nil)
9 ;; This variable is used by emacs-lisp-mode which is used heavily
10 ;; during the byte-compile phase
11 (defvar electric-pair-text-pairs '((34 . 34)))
13 ;; These two autoloads are needed for files.el. They are only used on
14 ;; their respective platforms so do not get added to
15 ;; ldefs-boot-auto.el when it is generated on a different platform.
16 (autoload 'dos-convert-standard-filename "dos-fns.el" nil nil nil)
17 (autoload 'w32-convert-standard-filename "w32-fns.el" nil nil nil)
20 (load "ldefs-boot-auto.el")
22 ;; Local Variables:
23 ;; no-byte-compile: t
24 ;; no-update-autoloads: t
25 ;; End: