diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2003-11-16 16:17:09 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2003-11-16 16:17:09 +0000 |
commit | 7c402969951c97a2d878c16f7f4c18152258e1f9 (patch) | |
tree | 9b1ca15b91b342b82573cd9ecebe7c7def57cc56 /src/fontset.c | |
parent | 57669b57fca39a20c2bdf20a32bff6ab2e999f00 (diff) | |
download | emacs-7c402969951c97a2d878c16f7f4c18152258e1f9.tar.gz |
Remove period at end of error message.
Diffstat (limited to 'src/fontset.c')
-rw-r--r-- | src/fontset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c index 990c1bbb9fa..e462387beae 100644 --- a/src/fontset.c +++ b/src/fontset.c @@ -1012,7 +1012,7 @@ name of a font, REGISTRY is a registry name of a font. */) from = XINT (XCAR (character)); to = XINT (XCDR (character)); if (!char_valid_p (from, 0) || !char_valid_p (to, 0)) - error ("Character range should be by non-generic characters."); + error ("Character range should be by non-generic characters"); if (!NILP (name) && (SINGLE_BYTE_CHAR_P (from) || SINGLE_BYTE_CHAR_P (to))) error ("Can't change font for a single byte character"); |