patcomp.el
来自「windows版本的emacs」· EL 代码 · 共 23 行
EL
23 行
;;; patcomp.el --- used by patch files to update Emacs releases;; This file is part of GNU Emacs.;;; Commentary:;;; Code:(defun batch-byte-recompile-emacs () "Recompile the Emacs `lisp' directory.This is used after installing the patches for a new version." (let ((load-path (list (expand-file-name "lisp")))) (byte-recompile-directory "lisp")))(defun batch-byte-compile-emacs () "Compile new files installed in the Emacs `lisp' directory.This is used after installing the patches for a new version.It uses the command line arguments to specify the files to compile." (let ((load-path (list (expand-file-name "lisp")))) (batch-byte-compile)));;; patcomp.el ends here
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?