diff options
| author | Richard M. Stallman | 1997-06-04 21:41:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-06-04 21:41:20 +0000 |
| commit | 85b6275ffc87a026d24b998f687d70d13dde6756 (patch) | |
| tree | 158963eed729734b9555727e7c3907268f2dc118 /lisp/diff.el | |
| parent | 7cc0629653cc9a5d9d0feeb513807b90d4239f35 (diff) | |
| download | emacs-85b6275ffc87a026d24b998f687d70d13dde6756.tar.gz emacs-85b6275ffc87a026d24b998f687d70d13dde6756.zip | |
Customize.
(diff-switches, diff-command): Add autoload cookies.
Diffstat (limited to 'lisp/diff.el')
| -rw-r--r-- | lisp/diff.el | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/lisp/diff.el b/lisp/diff.el index 3d05a3bda74..155942a8582 100644 --- a/lisp/diff.el +++ b/lisp/diff.el | |||
| @@ -31,12 +31,22 @@ | |||
| 31 | 31 | ||
| 32 | (require 'compile) | 32 | (require 'compile) |
| 33 | 33 | ||
| 34 | ;;; This is duplicated in vc.el. | 34 | ;;;###autoload |
| 35 | (defvar diff-switches "-c" | 35 | (defgroup diff nil |
| 36 | "*A string or list of strings specifying switches to be be passed to diff.") | 36 | "Comparing files with `diff'." |
| 37 | :group 'tools) | ||
| 38 | |||
| 39 | ;;;###autoload | ||
| 40 | (defcustom diff-switches "-c" | ||
| 41 | "*A string or list of strings specifying switches to be be passed to diff." | ||
| 42 | :type '(choice string (repeat string)) | ||
| 43 | :group 'diff) | ||
| 37 | 44 | ||
| 38 | (defvar diff-command "diff" | 45 | ;;;###autoload |
| 39 | "*The command to use to run diff.") | 46 | (defcustom diff-command "diff" |
| 47 | "*The command to use to run diff." | ||
| 48 | :type string | ||
| 49 | :group 'diff) | ||
| 40 | 50 | ||
| 41 | (defvar diff-regexp-alist | 51 | (defvar diff-regexp-alist |
| 42 | '( | 52 | '( |