aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2004-04-30 21:02:50 +0000
committerJuanma Barranquero2004-04-30 21:02:50 +0000
commit76f024d9b7d795c5a8e6c8067c0ee43f0649403b (patch)
tree4b096e7b690999a3174599b351f70c4eded535b5
parent38784ed88711927d4b36e76704665491c6310d39 (diff)
downloademacs-76f024d9b7d795c5a8e6c8067c0ee43f0649403b.tar.gz
emacs-76f024d9b7d795c5a8e6c8067c0ee43f0649403b.zip
(diff-switches): Fix typo in docstring.
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/diff.el2
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 37b74ef4e3c..7a7d90921f5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12004-04-30 Mario Lang <mlang@delysid.org>
2
3 * diff.el (diff-switches): Fix typo in docstring.
4
12004-04-30 Alex Schroeder <alex@gnu.org> 52004-04-30 Alex Schroeder <alex@gnu.org>
2 6
3 * xml.el (xml-debug-print-internal): Don't add newline and 7 * xml.el (xml-debug-print-internal): Don't add newline and
@@ -35,8 +39,8 @@
35 * help-fns.el (help-C-file-name): Use new subr-name. 39 * help-fns.el (help-C-file-name): Use new subr-name.
36 Prepend `src/' to the file name. 40 Prepend `src/' to the file name.
37 (help-C-source-directory, help-subr-name, help-find-C-source): Remove. 41 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
38 (describe-function-1, describe-variable): Only find a C source file name 42 (describe-function-1, describe-variable): Only find a C source file
39 if DOC is already loaded. 43 name if DOC is already loaded.
40 44
41 * help-mode.el (help-function-def, help-variable-def): 45 * help-mode.el (help-function-def, help-variable-def):
42 Use the new find-function-search-for-symbol functionality. 46 Use the new find-function-search-for-symbol functionality.
@@ -46,7 +50,7 @@
46 (find-function-C-source): New fun. 50 (find-function-C-source): New fun.
47 (find-function-search-for-symbol): Use it. 51 (find-function-search-for-symbol): Use it.
48 52
492004-03-15 Michael Mauger <mmaug@yahoo.com> 532004-03-29 Michael Mauger <mmaug@yahoo.com>
50 54
51 * progmodes/sql.el (sql-product-alist): Rename variable 55 * progmodes/sql.el (sql-product-alist): Rename variable
52 `sql-product-support'. Add Postgres login parameters. 56 `sql-product-support'. Add Postgres login parameters.
diff --git a/lisp/diff.el b/lisp/diff.el
index 76b1b5e60a7..c985b66036e 100644
--- a/lisp/diff.el
+++ b/lisp/diff.el
@@ -36,7 +36,7 @@
36 36
37;;;###autoload 37;;;###autoload
38(defcustom diff-switches "-c" 38(defcustom diff-switches "-c"
39 "*A string or list of strings specifying switches to be be passed to diff." 39 "*A string or list of strings specifying switches to be passed to diff."
40 :type '(choice string (repeat string)) 40 :type '(choice string (repeat string))
41 :group 'diff) 41 :group 'diff)
42 42