Mercurial > hg > xemacs-beta
diff lisp/faces.el @ 3360:316fddbf58e2
[xemacs-hg @ 2006-04-25 14:01:52 by stephent]
Repair broken commit to Xft code. <87aca9n4in.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Tue, 25 Apr 2006 14:02:09 +0000 |
parents | ad2f4ae9895b |
children | 98af8a976fc3 |
line wrap: on
line diff
--- a/lisp/faces.el Mon Apr 24 21:51:11 2006 +0000 +++ b/lisp/faces.el Tue Apr 25 14:02:09 2006 +0000 @@ -990,8 +990,10 @@ locale tag-set devtype-spec ffpdev) ;; devtype may be nil if it fails to match DEVTYPE-SPEC if devtype - if (let* ((mapper (if (functionp frob-mapping) frob-mapping - (plist-get frob-mapping devtype))) + if (let* ((mapper + (cond ((functionp frob-mapping) frob-mapping) + ((plist-get frob-mapping devtype)) + (t (error 'unimplemented "mapper" devtype)))) (result (cond ;; if a vector ...