diff options
author | John Paul Wallington <jpw@pobox.com> | 2003-04-14 07:54:15 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2003-04-14 07:54:15 +0000 |
commit | 37aad8f5ae9d250443d7859cadf14b58b3eef2d5 (patch) | |
tree | 6c01636253e7883570aa0065918789feaff22548 /lisp | |
parent | 98110b1f02108dd373c4b05e8556630d176b7ac7 (diff) | |
download | emacs-37aad8f5ae9d250443d7859cadf14b58b3eef2d5.tar.gz |
(create-fontset-from-ascii-font): Doc fix.
(x-must-resolve-font-name): Fix error message typo.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/international/fontset.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5dbac56d616..6d97e80b241 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-04-14 John Paul Wallington <jpw@gnu.org> + + * international/fontset.el (create-fontset-from-ascii-font): Doc fix. + (x-must-resolve-font-name): Fix error message typo. + 2003-04-13 Glenn Morris <gmorris@ast.cam.ac.uk> * progmodes/fortran.el (fortran-previous-statement): Check for diff --git a/lisp/international/fontset.el b/lisp/international/fontset.el index 8c273699ee5..363b86b13cb 100644 --- a/lisp/international/fontset.el +++ b/lisp/international/fontset.el @@ -398,7 +398,7 @@ Value is name of that font." (aset xlfd-fields index "*") (setq index (1+ index)))))) (unless ascii-font - (error "No fonts founds")) + (error "No fonts found")) ascii-font)) @@ -571,7 +571,7 @@ It returns a name of the created fontset." "Create a fontset from an ASCII font FONT. Optional 1st arg RESOLVED-FONT is a resolved name of FONT. If -omitted, x-resolve-font-name is called to get the resolved name. At +omitted, `x-resolve-font-name' is called to get the resolved name. At this time, if FONT is not available, error is signaled. Optional 2nd arg FONTSET-NAME is a string to be used in |