+2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
+
+ Fix typos that broke OS X build.
+ Reported by Randal L. Schwartz in
+ <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
+ * nsterm.m (ns_timeout): Add missing local decl.
+ (ns_get_color): snprintf -> sprintf, to fix typo.
+
2012-07-12 Glenn Morris <rgm@gnu.org>
* src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
/* Keep waiting until past the time wakeup. */
while (1)
{
- EMACS_TIME now = current_emacs_time ();
+ EMACS_TIME timeout, now = current_emacs_time ();
if (EMACS_TIME_LE (wakeup, now))
break;
timeout = sub_emacs_time (wakeup, now);
int i;
scaling = strlen(name+start) / 3;
for (i = 0; i < 3; i++)
- snprintf (hex + i * (scaling + 1), "%.*s/", scaling,
- name + start + i * scaling);
+ sprintf (hex + i * (scaling + 1), "%.*s/", scaling,
+ name + start + i * scaling);
hex[3 * (scaling + 1) - 1] = '\0';
}