]> git.eshelyaron.com Git - emacs.git/commitdiff
* nsfont.m (ns_registry_to_script): Parenthesize while expression.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 17 Jun 2013 21:10:31 +0000 (14:10 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 17 Jun 2013 21:10:31 +0000 (14:10 -0700)
src/ChangeLog
src/nsfont.m

index 71585e67d08323d6bcdcb655723de6f6a1ab2692..04e99446fa5d3a5e1f272d62518cc6f0e82e9855 100644 (file)
@@ -1,3 +1,7 @@
+2013-06-17  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * nsfont.m (ns_registry_to_script): Parenthesize while expression.
+
 2013-06-17  Eli Zaretskii  <eliz@gnu.org>
 
        * w32fns.c (w32_wnd_proc): Don't call WINDOW_HEADER_LINE_HEIGHT
index 709f2cb0d8670a86032c71bbc07b9fcd9abebb4b..49ede8f483c8094368aae147b8243ab1ae0457c2 100644 (file)
@@ -362,7 +362,7 @@ static NSString
 *ns_registry_to_script (char *reg)
 {
     Lisp_Object script, r, rts = Vns_reg_to_script;
-    while CONSP (rts)
+    while (CONSP (rts))
       {
         r = XCAR (XCAR (rts));
         if (!strncmp (SSDATA (r), reg, SBYTES (r)))