mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Customize.
(diff-switches, diff-command): Add autoload cookies.
This commit is contained in:
parent
7cc0629653
commit
85b6275ffc
1 changed files with 15 additions and 5 deletions
20
lisp/diff.el
20
lisp/diff.el
|
|
@ -31,12 +31,22 @@
|
|||
|
||||
(require 'compile)
|
||||
|
||||
;;; This is duplicated in vc.el.
|
||||
(defvar diff-switches "-c"
|
||||
"*A string or list of strings specifying switches to be be passed to diff.")
|
||||
;;;###autoload
|
||||
(defgroup diff nil
|
||||
"Comparing files with `diff'."
|
||||
:group 'tools)
|
||||
|
||||
(defvar diff-command "diff"
|
||||
"*The command to use to run diff.")
|
||||
;;;###autoload
|
||||
(defcustom diff-switches "-c"
|
||||
"*A string or list of strings specifying switches to be be passed to diff."
|
||||
:type '(choice string (repeat string))
|
||||
:group 'diff)
|
||||
|
||||
;;;###autoload
|
||||
(defcustom diff-command "diff"
|
||||
"*The command to use to run diff."
|
||||
:type string
|
||||
:group 'diff)
|
||||
|
||||
(defvar diff-regexp-alist
|
||||
'(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue