# HG changeset patch # User Kenichi Handa # Date 1045745347 0 # Node ID 4fb79f65681e15395ba03a35152bace1fe60f8c8 # Parent 3b81891b77035d2aec16587090e6c202840bf763 *** empty log message *** diff -r 3b81891b7703 -r 4fb79f65681e etc/NEWS --- a/etc/NEWS Thu Feb 20 12:43:47 2003 +0000 +++ b/etc/NEWS Thu Feb 20 12:49:07 2003 +0000 @@ -1175,6 +1175,9 @@ * Lisp Changes in Emacs 21.4 +** `set-fontset-font', `fontset-info', `fontset-font' now operate on +the default fontset if the argument NAME is nil.. + ** The escape sequence \s is now interpreted as a SPACE character, unless it is followed by a `-' in a character constant (e.g. ?\s-A), in which case it is still interpreted as the super modifier. diff -r 3b81891b7703 -r 4fb79f65681e lisp/ChangeLog --- a/lisp/ChangeLog Thu Feb 20 12:43:47 2003 +0000 +++ b/lisp/ChangeLog Thu Feb 20 12:49:07 2003 +0000 @@ -10,6 +10,8 @@ 2003-02-20 Kenichi Handa + * term/w32-win.el: Call set-fontset-font with NAME nil. + * international/mule-diag.el (print-fontset): If FONTSET is nil, use the default fontset. (describe-fontset): If the current frame is not using a fontset, diff -r 3b81891b7703 -r 4fb79f65681e src/ChangeLog --- a/src/ChangeLog Thu Feb 20 12:43:47 2003 +0000 +++ b/src/ChangeLog Thu Feb 20 12:49:07 2003 +0000 @@ -1,5 +1,15 @@ 2003-02-20 Kenichi Handa + * fontset.c (check_fontset_name): If NAME is nil, return the + default fontset. + (override_font_info): New function. + (Fset_fontset_font): Document that NAME nil means the default + fontset. + (Ffontset_info): If FONTSET is not the default fontset, merge + FONTSET onto the copy of the default fontset, and work on that + copy. Document that NAME nil means the default fontset. + (Ffontset_font): Document that NAME nil means the default fontset. + * process.c (setup_process_coding_systems): If the process's in/out descriptor is -1, do nothing.