diff options
| author | Juanma Barranquero | 2009-10-26 15:18:03 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2009-10-26 15:18:03 +0000 |
| commit | 057bce6f17f527439a01b181ecfc11b1c828466d (patch) | |
| tree | 5bf8eaede14b78768d2629848cb8bdb99950407b | |
| parent | 41849bf9cd66bacb9e4d81b3ad01bfbcf6e34392 (diff) | |
| download | emacs-057bce6f17f527439a01b181ecfc11b1c828466d.tar.gz emacs-057bce6f17f527439a01b181ecfc11b1c828466d.zip | |
Fix typos in comments.
* minibuf.c (Fall_completions): Fix typo in docstring.
| -rw-r--r-- | lisp/ChangeLog.13 | 2 | ||||
| -rw-r--r-- | lisp/faces.el | 2 | ||||
| -rw-r--r-- | lisp/international/mule.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog.9 | 2 | ||||
| -rw-r--r-- | src/frame.c | 8 | ||||
| -rw-r--r-- | src/minibuf.c | 2 |
8 files changed, 15 insertions, 11 deletions
diff --git a/lisp/ChangeLog.13 b/lisp/ChangeLog.13 index 7d18c57cbdc..8cd84ac001a 100644 --- a/lisp/ChangeLog.13 +++ b/lisp/ChangeLog.13 | |||
| @@ -958,7 +958,7 @@ | |||
| 958 | property to t. | 958 | property to t. |
| 959 | 959 | ||
| 960 | * international/mule.el (coding-system-get): | 960 | * international/mule.el (coding-system-get): |
| 961 | Check `ascii-incompatible' for backward compatiblity. | 961 | Check `ascii-incompatible' for backward compatibility. |
| 962 | (set-file-name-coding-system): Signal an error for a coding system | 962 | (set-file-name-coding-system): Signal an error for a coding system |
| 963 | not suitable for file name. | 963 | not suitable for file name. |
| 964 | (set-keyboard-coding-system): Signal an error for a coding system | 964 | (set-keyboard-coding-system): Signal an error for a coding system |
diff --git a/lisp/faces.el b/lisp/faces.el index 3bcd76b5c03..9904cf674f0 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -2159,7 +2159,7 @@ terminal type to a different value." | |||
| 2159 | 2159 | ||
| 2160 | 2160 | ||
| 2161 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 2161 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 2162 | ;;; Compatiblity with 20.2 | 2162 | ;;; Compatibility with 20.2 |
| 2163 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 2163 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 2164 | 2164 | ||
| 2165 | ;; Update a frame's faces when we change its default font. | 2165 | ;; Update a frame's faces when we change its default font. |
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 712291b4abf..a6e329b30ca 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -858,7 +858,7 @@ For compatibility with Emacs 20/21, this accepts old-style symbols | |||
| 858 | like `mime-charset' as well as the current style like `:mime-charset'." | 858 | like `mime-charset' as well as the current style like `:mime-charset'." |
| 859 | (or (plist-get (coding-system-plist coding-system) prop) | 859 | (or (plist-get (coding-system-plist coding-system) prop) |
| 860 | (if (not (keywordp prop)) | 860 | (if (not (keywordp prop)) |
| 861 | ;; For backward compatiblity. | 861 | ;; For backward compatibility. |
| 862 | (if (eq prop 'ascii-incompatible) | 862 | (if (eq prop 'ascii-incompatible) |
| 863 | (not (plist-get (coding-system-plist coding-system) | 863 | (not (plist-get (coding-system-plist coding-system) |
| 864 | :ascii-compatible-p)) | 864 | :ascii-compatible-p)) |
| @@ -1023,7 +1023,7 @@ Value is a list of transformed arguments." | |||
| 1023 | eol-type) | 1023 | eol-type) |
| 1024 | "Define a new coding system CODING-SYSTEM (symbol). | 1024 | "Define a new coding system CODING-SYSTEM (symbol). |
| 1025 | This function is provided for backward compatibility." | 1025 | This function is provided for backward compatibility." |
| 1026 | ;; For compatiblity with XEmacs, we check the type of TYPE. If it | 1026 | ;; For compatibility with XEmacs, we check the type of TYPE. If it |
| 1027 | ;; is a symbol, perhaps, this function is called with XEmacs-style | 1027 | ;; is a symbol, perhaps, this function is called with XEmacs-style |
| 1028 | ;; arguments. Here, try to transform that kind of arguments to | 1028 | ;; arguments. Here, try to transform that kind of arguments to |
| 1029 | ;; Emacs style. | 1029 | ;; Emacs style. |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 5612e64c02d..b12e18a1eaf 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -2339,7 +2339,7 @@ The file-structure looks like this: | |||
| 2339 | (goto-char limit) | 2339 | (goto-char limit) |
| 2340 | nil) | 2340 | nil) |
| 2341 | 2341 | ||
| 2342 | ;; Beware: this is not only compatiblity code. New code stil uses it. --Stef | 2342 | ;; Beware: this is not only compatibility code. New code stil uses it. --Stef |
| 2343 | (defun compilation-forget-errors () | 2343 | (defun compilation-forget-errors () |
| 2344 | ;; In case we hit the same file/line specs, we want to recompute a new | 2344 | ;; In case we hit the same file/line specs, we want to recompute a new |
| 2345 | ;; marker for them, so flush our cache. | 2345 | ;; marker for them, so flush our cache. |
diff --git a/src/ChangeLog b/src/ChangeLog index e313f397ddf..5752604f4c9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-10-26 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * minibuf.c (Fall_completions): Fix typo in docstring. | ||
| 4 | |||
| 1 | 2009-10-26 Andreas Schwab <schwab@redhat.com> | 5 | 2009-10-26 Andreas Schwab <schwab@redhat.com> |
| 2 | 6 | ||
| 3 | * puresize.h (PURESIZE_RATIO): Increase back to 10/6. | 7 | * puresize.h (PURESIZE_RATIO): Increase back to 10/6. |
diff --git a/src/ChangeLog.9 b/src/ChangeLog.9 index 665450e3b5c..f4ae7e78ac2 100644 --- a/src/ChangeLog.9 +++ b/src/ChangeLog.9 | |||
| @@ -7374,7 +7374,7 @@ | |||
| 7374 | 2000-09-01 Gerd Moellmann <gerd@gnu.org> | 7374 | 2000-09-01 Gerd Moellmann <gerd@gnu.org> |
| 7375 | 7375 | ||
| 7376 | * lread.c (read1): Accept `?' as symbol constituent, for | 7376 | * lread.c (read1): Accept `?' as symbol constituent, for |
| 7377 | compatiblity with XEmacs. | 7377 | compatibility with XEmacs. |
| 7378 | 7378 | ||
| 7379 | 2000-08-31 Stefan Monnier <monnier@cs.yale.edu> | 7379 | 2000-08-31 Stefan Monnier <monnier@cs.yale.edu> |
| 7380 | 7380 | ||
diff --git a/src/frame.c b/src/frame.c index a66d4dd57eb..90309a33d8b 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -892,8 +892,8 @@ The selection of FRAME lasts until the next time the user does | |||
| 892 | something to select a different frame, or until the next time | 892 | something to select a different frame, or until the next time |
| 893 | this function is called. If you are using a window system, the | 893 | this function is called. If you are using a window system, the |
| 894 | previously selected frame may be restored as the selected frame | 894 | previously selected frame may be restored as the selected frame |
| 895 | when returning to the command loop, because it still may have | 895 | when returning to the command loop, because it still may have |
| 896 | the window system's input focus. On a text-only terminal, the | 896 | the window system's input focus. On a text-only terminal, the |
| 897 | next redisplay will display FRAME. | 897 | next redisplay will display FRAME. |
| 898 | 898 | ||
| 899 | This function returns FRAME, or nil if FRAME has been deleted. */) | 899 | This function returns FRAME, or nil if FRAME has been deleted. */) |
| @@ -3398,7 +3398,7 @@ x_set_font (f, arg, oldval) | |||
| 3398 | { | 3398 | { |
| 3399 | font_object = arg; | 3399 | font_object = arg; |
| 3400 | /* This is to store the XLFD font name in the frame parameter for | 3400 | /* This is to store the XLFD font name in the frame parameter for |
| 3401 | backward compatiblity. We should store the font-object | 3401 | backward compatibility. We should store the font-object |
| 3402 | itself in the future. */ | 3402 | itself in the future. */ |
| 3403 | arg = AREF (font_object, FONT_NAME_INDEX); | 3403 | arg = AREF (font_object, FONT_NAME_INDEX); |
| 3404 | fontset = FRAME_FONTSET (f); | 3404 | fontset = FRAME_FONTSET (f); |
| @@ -3419,7 +3419,7 @@ x_set_font (f, arg, oldval) | |||
| 3419 | if (! NILP (Fequal (font_object, oldval))) | 3419 | if (! NILP (Fequal (font_object, oldval))) |
| 3420 | return; | 3420 | return; |
| 3421 | 3421 | ||
| 3422 | 3422 | ||
| 3423 | x_new_font (f, font_object, fontset); | 3423 | x_new_font (f, font_object, fontset); |
| 3424 | store_frame_param (f, Qfont, arg); | 3424 | store_frame_param (f, Qfont, arg); |
| 3425 | /* Recalculate toolbar height. */ | 3425 | /* Recalculate toolbar height. */ |
diff --git a/src/minibuf.c b/src/minibuf.c index 6a2d52ae6b7..06e2fc5e912 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1562,7 +1562,7 @@ Additionally to this predicate, `completion-regexp-list' | |||
| 1562 | is used to further constrain the set of candidates. | 1562 | is used to further constrain the set of candidates. |
| 1563 | 1563 | ||
| 1564 | An osbolete optional fourth argument HIDE-SPACES is still accepted for | 1564 | An osbolete optional fourth argument HIDE-SPACES is still accepted for |
| 1565 | backward compatiblity. If non-nil, strings in COLLECTION that start | 1565 | backward compatibility. If non-nil, strings in COLLECTION that start |
| 1566 | with a space are ignored unless STRING itself starts with a space. */) | 1566 | with a space are ignored unless STRING itself starts with a space. */) |
| 1567 | (string, collection, predicate, hide_spaces) | 1567 | (string, collection, predicate, hide_spaces) |
| 1568 | Lisp_Object string, collection, predicate, hide_spaces; | 1568 | Lisp_Object string, collection, predicate, hide_spaces; |