Issue183

classification
Title font-mgr error spelling still present
Type defect Module core code 21.5
Severity inconvenience Platform N/A
Keywords
explanation
process
These optional controls are only of interest to committers and tracker administrators.
Status committed   Reason fixed
Superseder   Submitted 2007-12-12.07:21:01
Priority normal   Assigned To
Nosy List aidan  

Created on 2008-01-19.06:43:07 by vgivanovic, last changed 2008-05-13.11:54:42 by aidan.

Files
File name Uploaded Type Edit Remove
unnamed vgivanovic, 2008-01-19.06:43:07 text/plain
Messages
msg743 [hidden] ([hidden]) Date: 2008-05-13.11:54:42
This was fixed in
http://hg.debian.org/hg/xemacs/xemacs?cs=dfd878799ef0 , of
2007-12-12 . Thank you for the bug report, Vladimir!
msg281 [hidden] ([hidden]) Date: 2008-01-19.06:43:07
  Message-ID: <475F8BDD.3030109@comcast.net>
With a fresh copy of the Mercurial repository, I had to apply this
patch to compile temacs:

diff -r a6d7e031a10b src/font-mgr.c
--- a/src/font-mgr.c	Thu Dec 06 20:10:16 2007 +0100
+++ b/src/font-mgr.c	Tue Dec 11 23:18:53 2007 -0800
@@ -909,7 +909,7 @@ DEFUN("fc-config-get-rescan-interval", F
       (config))
 {
   CHECK_FCCONFIG (config);
-  return make_int (FcConfigGetRescanInverval (XFCCONFIG_PTR (config)));
+  return make_int (FcConfigGetRescanInterval (XFCCONFIG_PTR (config)));
 }

 /* The misspelling in the fontconfig function name accurately
corresponds to
@@ -923,7 +923,7 @@ DEFUN("fc-config-set-rescan-interval", F
 {
   CHECK_FCCONFIG (config);
   CHECK_INT (rescan_interval);
-  if (FcConfigSetRescanInverval (XFCCONFIG_PTR (config),
+  if (FcConfigSetRescanInterval (XFCCONFIG_PTR (config),
 				 XINT (rescan_interval)) == FcFalse)
     signal_error (Qio_error, "FcConfigSetRescanInverval barfed",
 		  intern ("fc-config-set-rescan-interval"));

--- Vladimir
-- 

Vladimir G. Ivanovic
+1 650 450 4101
History
Date User Action Args
2008-05-13 11:54:42aidansetstatus: new -> committed
severity: inconvenience
platform: + N/A
nosy: + aidan
messages: + msg743
module: + core code 21.5
priority: normal
assignedto: aidan
reason: fixed
type: defect
2008-01-19 06:43:07vgivanoviccreate