# HG changeset patch # User Juanma Barranquero # Date 1256570283 0 # Node ID fd7169a87c28aac4607606c393e7cafc083e031c # Parent 92f6698524cd8288f6509a69c580ca5aa4ec2b39 Fix typos in comments. * minibuf.c (Fall_completions): Fix typo in docstring. diff -r 92f6698524cd -r fd7169a87c28 lisp/ChangeLog.13 --- a/lisp/ChangeLog.13 Mon Oct 26 14:59:12 2009 +0000 +++ b/lisp/ChangeLog.13 Mon Oct 26 15:18:03 2009 +0000 @@ -958,7 +958,7 @@ property to t. * international/mule.el (coding-system-get): - Check `ascii-incompatible' for backward compatiblity. + Check `ascii-incompatible' for backward compatibility. (set-file-name-coding-system): Signal an error for a coding system not suitable for file name. (set-keyboard-coding-system): Signal an error for a coding system diff -r 92f6698524cd -r fd7169a87c28 lisp/faces.el --- a/lisp/faces.el Mon Oct 26 14:59:12 2009 +0000 +++ b/lisp/faces.el Mon Oct 26 15:18:03 2009 +0000 @@ -2159,7 +2159,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; Compatiblity with 20.2 +;;; Compatibility with 20.2 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Update a frame's faces when we change its default font. diff -r 92f6698524cd -r fd7169a87c28 lisp/international/mule.el --- a/lisp/international/mule.el Mon Oct 26 14:59:12 2009 +0000 +++ b/lisp/international/mule.el Mon Oct 26 15:18:03 2009 +0000 @@ -858,7 +858,7 @@ like `mime-charset' as well as the current style like `:mime-charset'." (or (plist-get (coding-system-plist coding-system) prop) (if (not (keywordp prop)) - ;; For backward compatiblity. + ;; For backward compatibility. (if (eq prop 'ascii-incompatible) (not (plist-get (coding-system-plist coding-system) :ascii-compatible-p)) @@ -1023,7 +1023,7 @@ eol-type) "Define a new coding system CODING-SYSTEM (symbol). This function is provided for backward compatibility." - ;; For compatiblity with XEmacs, we check the type of TYPE. If it + ;; For compatibility with XEmacs, we check the type of TYPE. If it ;; is a symbol, perhaps, this function is called with XEmacs-style ;; arguments. Here, try to transform that kind of arguments to ;; Emacs style. diff -r 92f6698524cd -r fd7169a87c28 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Mon Oct 26 14:59:12 2009 +0000 +++ b/lisp/progmodes/compile.el Mon Oct 26 15:18:03 2009 +0000 @@ -2339,7 +2339,7 @@ (goto-char limit) nil) -;; Beware: this is not only compatiblity code. New code stil uses it. --Stef +;; Beware: this is not only compatibility code. New code stil uses it. --Stef (defun compilation-forget-errors () ;; In case we hit the same file/line specs, we want to recompute a new ;; marker for them, so flush our cache. diff -r 92f6698524cd -r fd7169a87c28 src/ChangeLog --- a/src/ChangeLog Mon Oct 26 14:59:12 2009 +0000 +++ b/src/ChangeLog Mon Oct 26 15:18:03 2009 +0000 @@ -1,3 +1,7 @@ +2009-10-26 Juanma Barranquero + + * minibuf.c (Fall_completions): Fix typo in docstring. + 2009-10-26 Andreas Schwab * puresize.h (PURESIZE_RATIO): Increase back to 10/6. diff -r 92f6698524cd -r fd7169a87c28 src/ChangeLog.9 --- a/src/ChangeLog.9 Mon Oct 26 14:59:12 2009 +0000 +++ b/src/ChangeLog.9 Mon Oct 26 15:18:03 2009 +0000 @@ -7374,7 +7374,7 @@ 2000-09-01 Gerd Moellmann * lread.c (read1): Accept `?' as symbol constituent, for - compatiblity with XEmacs. + compatibility with XEmacs. 2000-08-31 Stefan Monnier diff -r 92f6698524cd -r fd7169a87c28 src/frame.c --- a/src/frame.c Mon Oct 26 14:59:12 2009 +0000 +++ b/src/frame.c Mon Oct 26 15:18:03 2009 +0000 @@ -892,8 +892,8 @@ something to select a different frame, or until the next time this function is called. If you are using a window system, the previously selected frame may be restored as the selected frame -when returning to the command loop, because it still may have -the window system's input focus. On a text-only terminal, the +when returning to the command loop, because it still may have +the window system's input focus. On a text-only terminal, the next redisplay will display FRAME. This function returns FRAME, or nil if FRAME has been deleted. */) @@ -3398,7 +3398,7 @@ { font_object = arg; /* This is to store the XLFD font name in the frame parameter for - backward compatiblity. We should store the font-object + backward compatibility. We should store the font-object itself in the future. */ arg = AREF (font_object, FONT_NAME_INDEX); fontset = FRAME_FONTSET (f); @@ -3419,7 +3419,7 @@ if (! NILP (Fequal (font_object, oldval))) return; - + x_new_font (f, font_object, fontset); store_frame_param (f, Qfont, arg); /* Recalculate toolbar height. */ diff -r 92f6698524cd -r fd7169a87c28 src/minibuf.c --- a/src/minibuf.c Mon Oct 26 14:59:12 2009 +0000 +++ b/src/minibuf.c Mon Oct 26 15:18:03 2009 +0000 @@ -1562,7 +1562,7 @@ is used to further constrain the set of candidates. An osbolete optional fourth argument HIDE-SPACES is still accepted for -backward compatiblity. If non-nil, strings in COLLECTION that start +backward compatibility. If non-nil, strings in COLLECTION that start with a space are ignored unless STRING itself starts with a space. */) (string, collection, predicate, hide_spaces) Lisp_Object string, collection, predicate, hide_spaces;