; Fix doc typos related to indefinite articles
This commit is contained in:
parent
66a4e651f3
commit
9ab3df197f
11 changed files with 11 additions and 11 deletions
|
@ -983,7 +983,7 @@ alphabeticp (int c)
|
|||
|| gen_cat == UNICODE_CATEGORY_Nl);
|
||||
}
|
||||
|
||||
/* Return true if C is a alphabetic or decimal-number character. */
|
||||
/* Return true if C is an alphabetic or decimal-number character. */
|
||||
bool
|
||||
alphanumericp (int c)
|
||||
{
|
||||
|
|
|
@ -693,7 +693,7 @@ INLINE int
|
|||
char_table_translate (Lisp_Object obj, int ch)
|
||||
{
|
||||
/* This internal function is expected to be called with valid arguments,
|
||||
so there is a eassert instead of CHECK_xxx for the sake of speed. */
|
||||
so there is an eassert instead of CHECK_xxx for the sake of speed. */
|
||||
eassert (CHAR_VALID_P (ch));
|
||||
eassert (CHAR_TABLE_P (obj));
|
||||
obj = CHAR_TABLE_REF (obj, ch);
|
||||
|
|
|
@ -2332,7 +2332,7 @@ init_charset_once (void)
|
|||
Don't make the value so small that the table is reallocated during
|
||||
bootstrapping, as glibc malloc calls larger than just under 64 KiB
|
||||
during an initial bootstrap wreak havoc after dumping; see the
|
||||
M_MMAP_THRESHOLD value in alloc.c, plus there is a extra overhead
|
||||
M_MMAP_THRESHOLD value in alloc.c, plus there is an extra overhead
|
||||
internal to glibc malloc and perhaps to Emacs malloc debugging. */
|
||||
static struct charset charset_table_init[180];
|
||||
|
||||
|
|
|
@ -252,7 +252,7 @@ decode_coding_XXXX (struct coding_system *coding)
|
|||
CODING_RESULT_XXX indicating how the encoding finished.
|
||||
|
||||
DST_BYTES zero means that source area and destination area are
|
||||
overlapped, which means that we can produce a encoded text until it
|
||||
overlapped, which means that we can produce an encoded text until it
|
||||
reaches at the head of not-yet-encoded source text.
|
||||
|
||||
Below is a template of these functions. */
|
||||
|
|
|
@ -1401,7 +1401,7 @@ usage: (dbus-message-internal &rest REST) */)
|
|||
|
||||
if ((mtype == DBUS_MESSAGE_TYPE_ERROR)
|
||||
&& (!dbus_message_set_error_name (dmessage, DBUS_ERROR_FAILED)))
|
||||
XD_SIGNAL1 (build_string ("Unable to create a error message"));
|
||||
XD_SIGNAL1 (build_string ("Unable to create an error message"));
|
||||
}
|
||||
|
||||
/* Check for timeout parameter. */
|
||||
|
|
|
@ -8281,7 +8281,7 @@ extern WandExport void PixelGetMagickColor (const PixelWand *,
|
|||
#endif
|
||||
|
||||
/* Log ImageMagick error message.
|
||||
Useful when a ImageMagick function returns the status `MagickFalse'. */
|
||||
Useful when an ImageMagick function returns the status `MagickFalse'. */
|
||||
|
||||
static void
|
||||
imagemagick_error (MagickWand *wand)
|
||||
|
|
|
@ -503,7 +503,7 @@ DEFUN ("inotify-watch-list", Finotify_watch_list, Sinotify_watch_list, 0, 0, 0,
|
|||
}
|
||||
|
||||
DEFUN ("inotify-allocated-p", Finotify_allocated_p, Sinotify_allocated_p, 0, 0, 0,
|
||||
doc: /* Return non-nil, if a inotify instance is allocated. */)
|
||||
doc: /* Return non-nil, if an inotify instance is allocated. */)
|
||||
{
|
||||
return inotifyfd < 0 ? Qnil : Qt;
|
||||
}
|
||||
|
|
|
@ -1278,7 +1278,7 @@ append_key (Lisp_Object key_sequence, Lisp_Object key)
|
|||
return CALLN (Fvconcat, key_sequence, key_list);
|
||||
}
|
||||
|
||||
/* Given a event type C which is a symbol,
|
||||
/* Given an event type C which is a symbol,
|
||||
signal an error if is a mistake such as RET or M-RET or C-DEL, etc. */
|
||||
|
||||
static void
|
||||
|
|
|
@ -5792,7 +5792,7 @@ re_match_2_internal (struct re_pattern_buffer *bufp, const_re_char *string1,
|
|||
|
||||
EXTRACT_NUMBER (mcnt, p2 - 2);
|
||||
|
||||
/* Ensure this is a indeed the trivial kind of loop
|
||||
/* Ensure this is indeed the trivial kind of loop
|
||||
we are expecting. */
|
||||
assert (skip_one_char (p1) == p2 - 3);
|
||||
assert ((re_opcode_t) p2[-3] == jump && p2 + mcnt == p);
|
||||
|
|
|
@ -3028,7 +3028,7 @@ Comments are ignored if `parse-sexp-ignore-comments' is non-nil.
|
|||
|
||||
If we reach the beginning or end of the accessible part of the buffer
|
||||
before we have scanned over COUNT lists, return nil if the depth at
|
||||
that point is zero, and signal a error if the depth is nonzero. */)
|
||||
that point is zero, and signal an error if the depth is nonzero. */)
|
||||
(Lisp_Object from, Lisp_Object count, Lisp_Object depth)
|
||||
{
|
||||
CHECK_NUMBER (from);
|
||||
|
|
|
@ -32479,7 +32479,7 @@ or `nobreak-hyphen' face respectively.
|
|||
U+00A0 (no-break space), U+00AD (soft hyphen), U+2010 (hyphen), and
|
||||
U+2011 (non-breaking hyphen) are affected.
|
||||
|
||||
Any other non-nil value means to display these characters as a escape
|
||||
Any other non-nil value means to display these characters as an escape
|
||||
glyph followed by an ordinary space or hyphen.
|
||||
|
||||
A value of nil means no special handling of these characters. */);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue