aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2009-10-26 15:18:03 +0000
committerJuanma Barranquero2009-10-26 15:18:03 +0000
commit057bce6f17f527439a01b181ecfc11b1c828466d (patch)
tree5bf8eaede14b78768d2629848cb8bdb99950407b /src
parent41849bf9cd66bacb9e4d81b3ad01bfbcf6e34392 (diff)
downloademacs-057bce6f17f527439a01b181ecfc11b1c828466d.tar.gz
emacs-057bce6f17f527439a01b181ecfc11b1c828466d.zip
Fix typos in comments.
* minibuf.c (Fall_completions): Fix typo in docstring.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/ChangeLog.92
-rw-r--r--src/frame.c8
-rw-r--r--src/minibuf.c2
4 files changed, 10 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e313f397ddf..5752604f4c9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12009-10-26 Juanma Barranquero <lekktu@gmail.com>
2
3 * minibuf.c (Fall_completions): Fix typo in docstring.
4
12009-10-26 Andreas Schwab <schwab@redhat.com> 52009-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 @@
73742000-09-01 Gerd Moellmann <gerd@gnu.org> 73742000-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
73792000-08-31 Stefan Monnier <monnier@cs.yale.edu> 73792000-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
892something to select a different frame, or until the next time 892something to select a different frame, or until the next time
893this function is called. If you are using a window system, the 893this function is called. If you are using a window system, the
894previously selected frame may be restored as the selected frame 894previously selected frame may be restored as the selected frame
895when returning to the command loop, because it still may have 895when returning to the command loop, because it still may have
896the window system's input focus. On a text-only terminal, the 896the window system's input focus. On a text-only terminal, the
897next redisplay will display FRAME. 897next redisplay will display FRAME.
898 898
899This function returns FRAME, or nil if FRAME has been deleted. */) 899This 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'
1562is used to further constrain the set of candidates. 1562is used to further constrain the set of candidates.
1563 1563
1564An osbolete optional fourth argument HIDE-SPACES is still accepted for 1564An osbolete optional fourth argument HIDE-SPACES is still accepted for
1565backward compatiblity. If non-nil, strings in COLLECTION that start 1565backward compatibility. If non-nil, strings in COLLECTION that start
1566with a space are ignored unless STRING itself starts with a space. */) 1566with 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;