comparison lisp/diff-mode.el @ 42472:5787452daded

Comment fixes.
author Pavel Janík <Pavel@Janik.cz>
date Tue, 01 Jan 2002 22:12:19 +0000
parents 7662f312caf2
children 4c4398249108
comparison
equal deleted inserted replaced
42471:4234f54994ef 42472:5787452daded
1 ;;; diff-mode.el --- A mode for viewing/editing context diffs 1 ;;; diff-mode.el --- a mode for viewing/editing context diffs
2 2
3 ;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. 3 ;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 4
5 ;; Author: Stefan Monnier <monnier@cs.yale.edu> 5 ;; Author: Stefan Monnier <monnier@cs.yale.edu>
6 ;; Keywords: patch diff 6 ;; Keywords: convenience patch diff
7 7
8 ;; This file is part of GNU Emacs. 8 ;; This file is part of GNU Emacs.
9 9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify 10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by 11 ;; it under the terms of the GNU General Public License as published by
26 26
27 ;; Provides support for font-lock, outline, navigation 27 ;; Provides support for font-lock, outline, navigation
28 ;; commands, editing and various conversions as well as jumping 28 ;; commands, editing and various conversions as well as jumping
29 ;; to the corresponding source file. 29 ;; to the corresponding source file.
30 30
31 ;; inspired by Pavel Machek's patch-mode.el (<pavel@atrey.karlin.mff.cuni.cz>) 31 ;; Inspired by Pavel Machek's patch-mode.el (<pavel@atrey.karlin.mff.cuni.cz>)
32 ;; some efforts were spent to have it somewhat compatible with XEmacs' 32 ;; Some efforts were spent to have it somewhat compatible with XEmacs'
33 ;; diff-mode as well as with compilation-minor-mode 33 ;; diff-mode as well as with compilation-minor-mode
34
35 ;; to use it, simply add to your .emacs the following lines:
36 ;;
37 ;; (autoload 'diff-mode "diff-mode" "Diff major mode" t)
38 ;; (add-to-list 'auto-mode-alist '("\\.\\(diffs?\\|patch\\|rej\\)\\'" . diff-mode))
39 34
40 ;; Bugs: 35 ;; Bugs:
41 36
42 ;; - Reverse doesn't work with normal diffs. 37 ;; - Reverse doesn't work with normal diffs.
43 38