+2001-07-12 Stefan Monnier <monnier@cs.yale.edu>
+
+ * coding.c (Ffind_coding_systems_region_internal): If safe_codings
+ is t, don't try to append anything to it.
+
2001-07-12 Eli Zaretskii <eliz@is.elta.co.il>
* dired.c (file_name_completion): Pass dp->d_name to
the event after checking it with x_handle_property_notify.
* xselect.c (TRACE0, TRACE1, TRACE2): New macros, defined
- depending on TRACE_SELECTION. Replace fprintfs in #if 0 with
- TRACE macros to facilitate debugging. Add additional trace
- statements.
+ depending on TRACE_SELECTION. Replace fprintfs in #if 0 with
+ TRACE macros to facilitate debugging. Add additional trace statements.
(toplevel): Add prototypes for file-local functions.
(x_atom_to_symbol): Remove DPYINFO parameter.
safe_codings = find_safe_codings (p2, p2end, safe_codings, work_table,
&single_byte_char_found);
- if (!single_byte_char_found)
+ if (EQ (safe_codings, Qt))
+ ; /* Nothing to be done. */
+ else if (!single_byte_char_found)
{
/* Append generic coding systems. */
Lisp_Object args[2];