* configure.ac: Check for getc_unlocked.
* src/charset.c (read_hex, load_charset_map_from_file): Use
getc_unlocked instead of getc.
(getc_unlocked) [!HAVE_GETC_UNLOCKED]: Fall back to getc.
* src/lread.c (readbyte_from_file, Fget_file_char, read1,
getc_unlocked): Likewise.
AC_CHECK_MEMBERS([struct unipair.unicode], [], [], [[#include <linux/kd.h>]])
-AC_CHECK_FUNCS_ONCE([sbrk])
+AC_CHECK_FUNCS_ONCE([getc_unlocked sbrk])
ok_so_far=yes
AC_CHECK_FUNC(socket, , ok_so_far=no)
#define GET_TEMP_CHARSET_WORK_DECODER(CODE) \
(temp_charset_work->table.decoder[(CODE)])
+
+#ifndef HAVE_GETC_UNLOCKED
+#define getc_unlocked getc
+#endif
\f
/* Set to 1 to warn that a charset map is loaded and thus a buffer
int c;
unsigned n;
- while ((c = getc (fp)) != EOF)
+ while ((c = getc_unlocked (fp)) != EOF)
{
if (c == '#')
{
- while ((c = getc (fp)) != EOF && c != '\n');
+ while ((c = getc_unlocked (fp)) != EOF && c != '\n');
}
else if (c == '0')
{
- if ((c = getc (fp)) == EOF || c == 'x')
+ if ((c = getc_unlocked (fp)) == EOF || c == 'x')
break;
}
}
return 0;
}
n = 0;
- while (c_isxdigit (c = getc (fp)))
+ while (c_isxdigit (c = getc_unlocked (fp)))
{
if (INT_LEFT_SHIFT_OVERFLOW (n, 4))
*overflow = 1;
from = read_hex (fp, &eof, &overflow);
if (eof)
break;
- if (getc (fp) == '-')
+ if (getc_unlocked (fp) == '-')
to = read_hex (fp, &eof, &overflow);
else
to = from;
#define file_tell ftell
#endif
+#ifndef HAVE_GETC_UNLOCKED
+#define getc_unlocked getc
+#endif
+
/* The association list of objects read with the #n=object form.
Each member of the list has the form (n . object), and is used to
look up the object for the corresponding #n# construct.
}
block_input ();
- c = getc (instream);
+ c = getc_unlocked (instream);
/* Interrupted reads have been observed while reading over the network. */
while (c == EOF && ferror (instream) && errno == EINTR)
maybe_quit ();
block_input ();
clearerr (instream);
- c = getc (instream);
+ c = getc_unlocked (instream);
}
unblock_input ();
{
register Lisp_Object val;
block_input ();
- XSETINT (val, getc (instream));
+ XSETINT (val, getc_unlocked (instream));
unblock_input ();
return val;
}
/* Copy that many characters into saved_doc_string. */
block_input ();
for (i = 0; i < nskip && c >= 0; i++)
- saved_doc_string[i] = c = getc (instream);
+ saved_doc_string[i] = c = getc_unlocked (instream);
unblock_input ();
saved_doc_string_length = i;