(fast_string_match): Give re_search byte size of
[bpt/emacs.git] / src / minibuf.c
index 7de73d0..f4e8fc6 100644 (file)
@@ -1,5 +1,5 @@
 /* Minibuffer input and completion.
-   Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997
+   Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997, 1998
          Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
@@ -183,12 +183,15 @@ without invoking the usual minibuffer commands.")
 \f
 /* Actual minibuffer invocation. */
 
-static Lisp_Object read_minibuf_unwind ();
-Lisp_Object get_minibuffer ();
-static Lisp_Object read_minibuf ();
+static Lisp_Object read_minibuf_unwind P_ ((Lisp_Object));
+static Lisp_Object read_minibuf P_ ((Lisp_Object, Lisp_Object,
+                                    Lisp_Object, Lisp_Object,
+                                    int, Lisp_Object,
+                                    Lisp_Object, Lisp_Object,
+                                    int, int));
 
 /* Read from the minibuffer using keymap MAP, initial contents INITIAL
-   (a string), putting point minus BACKUP_N chars from the end of INITIAL,
+   (a string), putting point minus BACKUP_N bytes from the end of INITIAL,
    prompting with PROMPT (a string), using history list HISTVAR
    with initial position HISTPOS.  (BACKUP_N should be <= 0.)
 
@@ -216,6 +219,7 @@ read_minibuf (map, initial, prompt, backup_n, expflag,
      Lisp_Object histvar;
      Lisp_Object histpos;
      Lisp_Object defalt;
+     int allow_props;
      int inherit_input_method;
 {
   Lisp_Object val;
@@ -369,8 +373,8 @@ read_minibuf (map, initial, prompt, backup_n, expflag,
   if (!NILP (initial))
     {
       Finsert (1, &initial);
-      if (!NILP (backup_n) && INTEGERP (backup_n))
-       Fgoto_char (make_number (PT + XFASTINT (backup_n)));
+      if (INTEGERP (backup_n))
+       Fforward_char (backup_n);
     }
 
   echo_area_glyphs = 0;
@@ -466,12 +470,22 @@ read_minibuf (map, initial, prompt, backup_n, expflag,
     {
       Lisp_Object expr_and_pos;
       unsigned char *p;
+      int pos;
 
       expr_and_pos = Fread_from_string (val, Qnil, Qnil);
-      /* Ignore trailing whitespace; any other trailing junk is an error.  */
-      for (p = XSTRING (val)->data + XINT (Fcdr (expr_and_pos)); *p; p++)
-       if (*p != ' ' && *p != '\t' && *p != '\n')
-         error ("Trailing garbage following expression");
+      pos = XINT (Fcdr (expr_and_pos));
+      if (pos != XSTRING (val)->size)
+       {
+         /* Ignore trailing whitespace; any other trailing junk is an error.  */
+         int i;
+         pos = string_char_to_byte (val, pos);
+         for (i = pos; i < XSTRING (val)->size_byte; i++)
+           {
+             int c = XSTRING (val)->data[i];
+             if (c != ' ' && c != '\t' && c != '\n')
+               error ("Trailing garbage following expression");
+           }
+       }
       val = Fcar (expr_and_pos);
     }
 
@@ -620,7 +634,7 @@ Sixth arg DEFAULT-VALUE is the default value.  If non-nil, it is used\n\
  the empty string.\n\
 Seventh arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\
  the current input method and the setting of enable-multibyte-characters.\n\
-If the variable `minibuffer-allow-text-properties is non-nil,\n\
+If the variable `minibuffer-allow-text-properties' is non-nil,\n\
  then the string which is returned includes whatever text properties\n\
  were present in the minibuffer.  Otherwise the value has no text properties.")
   (prompt, initial_contents, keymap, read, hist, default_value, inherit_input_method)
@@ -722,7 +736,10 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading.\n\
 The third arg HISTORY, if non-nil, specifies a history list\n\
   and optionally the initial position in the list.\n\
 See `read-from-minibuffer' for details of HISTORY argument.\n\
-Fourth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\
+Fourth arg DEFAULT-VALUE is the default value.  If non-nil, it is used\n\
+ for history commands, and as the value to return if the user enters\n\
+ the empty string.\n\
+Fifth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\
  the current input method and the setting of enable-multibyte-characters.")
   (prompt, initial_input, history, default_value, inherit_input_method)
      Lisp_Object prompt, initial_input, history, default_value;
@@ -761,7 +778,7 @@ Prompts with PROMPT.  By default, return DEFAULT-VALUE.")
   if (NILP (default_value))
     default_string = Qnil;
   else if (SYMBOLP (default_value))
-    default_string = XSYMBOL (default_value)->name;
+    XSETSTRING (default_string, XSYMBOL (default_value)->name);
   else
     default_string = default_value;
     
@@ -796,7 +813,7 @@ A user variable is one whose documentation starts with a `*' character.")
   if (NILP (default_value))
     default_string = Qnil;
   else if (SYMBOLP (default_value))
-    default_string = XSYMBOL (default_value)->name;
+    XSETSTRING (default_string, XSYMBOL (default_value)->name);
   else
     default_string = default_value;
     
@@ -869,7 +886,9 @@ or the symbol from the obarray.")
      Lisp_Object string, alist, predicate;
 {
   Lisp_Object bestmatch, tail, elt, eltstring;
+  /* Size in bytes of BESTMATCH.  */
   int bestmatchsize;
+  /* These are in bytes, too.  */
   int compare, matchsize;
   int list = CONSP (alist) || NILP (alist);
   int index, obsize;
@@ -930,9 +949,9 @@ or the symbol from the obarray.")
       /* Is this element a possible completion? */
 
       if (STRINGP (eltstring)
-         && XSTRING (string)->size <= XSTRING (eltstring)->size
+         && XSTRING (string)->size_byte <= XSTRING (eltstring)->size_byte
          && 0 > scmp (XSTRING (eltstring)->data, XSTRING (string)->data,
-                      XSTRING (string)->size))
+                      XSTRING (string)->size_byte))
        {
          /* Yes. */
          Lisp_Object regexps;
@@ -970,10 +989,13 @@ or the symbol from the obarray.")
 
          matchcount++;
          if (NILP (bestmatch))
-           bestmatch = eltstring, bestmatchsize = XSTRING (eltstring)->size;
+           {
+             bestmatch = eltstring;
+             bestmatchsize = XSTRING (eltstring)->size_byte;
+           }
          else
            {
-             compare = min (bestmatchsize, XSTRING (eltstring)->size);
+             compare = min (bestmatchsize, XSTRING (eltstring)->size_byte);
              matchsize = scmp (XSTRING (bestmatch)->data,
                                XSTRING (eltstring)->data,
                                compare);
@@ -985,8 +1007,8 @@ or the symbol from the obarray.")
                     use it as the best match rather than one that is not an
                     exact match.  This way, we get the case pattern
                     of the actual match.  */
-                 if ((matchsize == XSTRING (eltstring)->size
-                      && matchsize < XSTRING (bestmatch)->size)
+                 if ((matchsize == XSTRING (eltstring)->size_byte
+                      && matchsize < XSTRING (bestmatch)->size_byte)
                      ||
                      /* If there is more than one exact match ignoring case,
                         and one of them is exact including case,
@@ -994,13 +1016,15 @@ or the symbol from the obarray.")
                      /* If there is no exact match ignoring case,
                         prefer a match that does not change the case
                         of the input.  */
-                     ((matchsize == XSTRING (eltstring)->size)
+                     ((matchsize == XSTRING (eltstring)->size_byte)
                       ==
-                      (matchsize == XSTRING (bestmatch)->size)
+                      (matchsize == XSTRING (bestmatch)->size_byte)
                       && !bcmp (XSTRING (eltstring)->data,
-                                XSTRING (string)->data, XSTRING (string)->size)
+                                XSTRING (string)->data,
+                                XSTRING (string)->size_byte)
                       && bcmp (XSTRING (bestmatch)->data,
-                               XSTRING (string)->data, XSTRING (string)->size)))
+                               XSTRING (string)->data,
+                               XSTRING (string)->size_byte)))
                    bestmatch = eltstring;
                }
              bestmatchsize = matchsize;
@@ -1013,17 +1037,19 @@ or the symbol from the obarray.")
   /* If we are ignoring case, and there is no exact match,
      and no additional text was supplied,
      don't change the case of what the user typed.  */
-  if (completion_ignore_case && bestmatchsize == XSTRING (string)->size
-      && XSTRING (bestmatch)->size > bestmatchsize)
+  if (completion_ignore_case && bestmatchsize == XSTRING (string)->size_byte
+      && XSTRING (bestmatch)->size_byte > bestmatchsize)
     return string;
 
   /* Return t if the supplied string is an exact match (counting case);
      it does not require any change to be made.  */
-  if (matchcount == 1 && bestmatchsize == XSTRING (string)->size
+  if (matchcount == 1 && bestmatchsize == XSTRING (string)->size_byte
       && !bcmp (XSTRING (bestmatch)->data, XSTRING (string)->data,
                bestmatchsize))
     return Qt;
 
+  bestmatchsize = string_byte_to_char (bestmatch, bestmatchsize);
+
   XSETFASTINT (zero, 0);               /* Else extract the part in which */
   XSETFASTINT (end, bestmatchsize);    /* all completions agree */
   return Fsubstring (bestmatch, zero, end);
@@ -1151,14 +1177,15 @@ are ignored unless STRING itself starts with a space.")
       /* Is this element a possible completion? */
 
       if (STRINGP (eltstring)
-         && XSTRING (string)->size <= XSTRING (eltstring)->size
+         && XSTRING (string)->size_byte <= XSTRING (eltstring)->size_byte
          /* If HIDE_SPACES, reject alternatives that start with space
             unless the input starts with space.  */
-         && ((XSTRING (string)->size > 0 && XSTRING (string)->data[0] == ' ')
+         && ((XSTRING (string)->size_byte > 0
+              && XSTRING (string)->data[0] == ' ')
              || XSTRING (eltstring)->data[0] != ' '
              || NILP (hide_spaces))
          && 0 > scmp (XSTRING (eltstring)->data, XSTRING (string)->data,
-                      XSTRING (string)->size))
+                      XSTRING (string)->size_byte))
        {
          /* Yes. */
          Lisp_Object regexps;
@@ -1230,7 +1257,7 @@ HIST, if non-nil, specifies a history list\n\
   or it can be a cons cell (HISTVAR . HISTPOS).\n\
   In that case, HISTVAR is the history list variable to use,\n\
   and HISTPOS is the initial position (the position in the list\n\
-  which INITIAL-CONTENTS corresponds to).\n\
+  which INITIAL-INPUT corresponds to).\n\
   Positions are counted starting from 1 at the beginning of the list.\n\
 DEF, if non-nil, is the default value.\n\
 \n\
@@ -1303,9 +1330,6 @@ DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0,
 \f
 Lisp_Object Fminibuffer_completion_help ();
 Lisp_Object assoc_for_completion ();
-/* A subroutine of Fintern_soft.  */
-extern Lisp_Object oblookup ();
-
 
 /* Test whether TXT is an exact completion.  */
 Lisp_Object
@@ -1321,7 +1345,9 @@ test_completion (txt)
     {
       /* Bypass intern-soft as that loses for nil */
       tem = oblookup (Vminibuffer_completion_table,
-                     XSTRING (txt)->data, XSTRING (txt)->size);
+                     XSTRING (txt)->data,
+                     XSTRING (txt)->size,
+                     XSTRING (txt)->size_byte);
       if (!SYMBOLP (tem))
        return Qnil;
       else if (!NILP (Vminibuffer_completion_predicate))
@@ -1570,7 +1596,7 @@ Return nil if there is no valid completion, else t.")
   ()
 {
   Lisp_Object completion, tem;
-  register int i;
+  register int i, i_byte;
   register unsigned char *completion_string;
   struct gcpro gcpro1, gcpro2;
 
@@ -1607,7 +1633,7 @@ Return nil if there is no valid completion, else t.")
 #else /* Rewritten code */
   {
     register unsigned char *buffer_string;
-    int buffer_length, completion_length;
+    int buffer_nbytes, completion_nbytes;
 
     CHECK_STRING (completion, 0);
     tem = Fbuffer_string ();
@@ -1622,30 +1648,31 @@ Return nil if there is no valid completion, else t.")
          {
            tem = substituted;
            Ferase_buffer ();
-           insert_from_string (tem, 0, XSTRING (tem)->size, 0);
+           insert_from_string (tem, 0, 0, XSTRING (tem)->size,
+                               XSTRING (tem)->size_byte, 0);
          }
       }
     buffer_string = XSTRING (tem)->data;
     completion_string = XSTRING (completion)->data;
-    buffer_length = XSTRING (tem)->size; /* ie ZV - BEGV */
-    completion_length = XSTRING (completion)->size;
-    i = buffer_length - completion_length;
-    /* Mly: I don't understand what this is supposed to do AT ALL */
-    if (i > 0 ||
-       0 <= scmp (buffer_string, completion_string, buffer_length))
+    buffer_nbytes = XSTRING (tem)->size_byte; /* ie ZV_BYTE - BEGV_BYTE */
+    completion_nbytes = XSTRING (completion)->size_byte;
+    i_byte = buffer_nbytes - completion_nbytes;
+    if (i_byte > 0 ||
+       0 <= scmp (buffer_string, completion_string, buffer_nbytes))
       {
        /* Set buffer to longest match of buffer tail and completion head. */
-       if (i <= 0) i = 1;
-       buffer_string += i;
-       buffer_length -= i;
-       while (0 <= scmp (buffer_string++, completion_string, buffer_length--))
-         i++;
-       del_range (1, i + 1);
-       SET_PT (ZV);
+       if (i_byte <= 0) i_byte = 1;
+       buffer_string += i_byte;
+       buffer_nbytes -= i_byte;
+       while (0 <= scmp (buffer_string++, completion_string, buffer_nbytes--))
+         i_byte++;
+       del_range_byte (1, i_byte + 1, 1);
+       SET_PT_BOTH (ZV, ZV_BYTE);
       }
     UNGCPRO;
   }
 #endif /* Rewritten code */
+  i_byte = ZV_BYTE - BEGV_BYTE;
   i = ZV - BEGV;
 
   /* If completion finds next char not unique,
@@ -1680,14 +1707,15 @@ Return nil if there is no valid completion, else t.")
     int len, c;
 
     completion_string = XSTRING (completion)->data;
-    for (; i < XSTRING (completion)->size; i += len)
+    for (; i_byte < XSTRING (completion)->size_byte; i_byte += len, i++)
       {
-       c = STRING_CHAR_AND_LENGTH (completion_string + i,
-                                   XSTRING (completion)->size - i,
+       c = STRING_CHAR_AND_LENGTH (completion_string + i_byte,
+                                   XSTRING (completion)->size - i_byte,
                                    len);
        if (SYNTAX (c) != Sword)
          {
-           i += len;
+           i_byte += len;
+           i++;
            break;
          }
       }
@@ -1695,7 +1723,7 @@ Return nil if there is no valid completion, else t.")
 
   /* If got no characters, print help for user.  */
 
-  if (i == ZV - BEGV)
+  if (i_byte == ZV_BYTE - BEGV_BYTE)
     {
       if (auto_help)
        Fminibuffer_completion_help ();
@@ -1705,7 +1733,7 @@ Return nil if there is no valid completion, else t.")
   /* Otherwise insert in minibuffer the chars we got */
 
   Ferase_buffer ();
-  insert_from_string (completion, 0, i, 1);
+  insert_from_string (completion, 0, 0, i, i_byte, 1);
   return Qt;
 }
 \f
@@ -1926,20 +1954,22 @@ temp_echo_area_glyphs (m)
      char *m;
 {
   int osize = ZV;
+  int osize_byte = ZV_BYTE;
   int opoint = PT;
+  int opoint_byte = PT_BYTE;
   Lisp_Object oinhibit;
   oinhibit = Vinhibit_quit;
 
   /* Clear out any old echo-area message to make way for our new thing.  */
   message (0);
 
-  SET_PT (osize);
+  SET_PT_BOTH (osize, osize_byte);
   insert_string (m);
-  SET_PT (opoint);
+  SET_PT_BOTH (opoint, opoint_byte);
   Vinhibit_quit = Qt;
   Fsit_for (make_number (2), Qnil, Qnil);
-  del_range (osize, ZV);
-  SET_PT (opoint);
+  del_range_both (osize, ZV, osize_byte, ZV_BYTE, 1);
+  SET_PT_BOTH (opoint, opoint_byte);
   if (!NILP (Vquit_flag))
     {
       Vquit_flag = Qnil;