]> git.eshelyaron.com Git - emacs.git/commitdiff
(temp_echo_area_glyphs): Remove unused function.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 9 Apr 2008 18:02:08 +0000 (18:02 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 9 Apr 2008 18:02:08 +0000 (18:02 +0000)
src/ChangeLog
src/minibuf.c

index fc7b1404a416d11e092a57a38db93ce864167a48..893af47ccc70ced224464ba2d6f47b51fc974d3f 100644 (file)
@@ -1,3 +1,7 @@
+2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * minibuf.c (temp_echo_area_glyphs): Remove unused function.
+
 2008-04-09  Juanma Barranquero  <lekktu@gmail.com>
 
        * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
index ee6089a244c66d2a5be586afe6d616517e465345..8cdea645d34c8eb0b6f7afd4947a66715601987b 100644 (file)
@@ -2023,48 +2023,6 @@ If no minibuffer is active, return nil.  */)
   return Fcopy_sequence (minibuf_prompt);
 }
 
-\f
-/* Temporarily display STRING at the end of the current
-   minibuffer contents.  This is used to display things like
-   "[No Match]" when the user requests a completion for a prefix
-   that has no possible completions, and other quick, unobtrusive
-   messages.  */
-
-extern Lisp_Object Vminibuffer_message_timeout;
-
-void
-temp_echo_area_glyphs (string)
-     Lisp_Object string;
-{
-  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_BOTH (osize, osize_byte);
-  insert_from_string (string, 0, 0, SCHARS (string), SBYTES (string), 0);
-  SET_PT_BOTH (opoint, opoint_byte);
-  Vinhibit_quit = Qt;
-
-  if (NUMBERP (Vminibuffer_message_timeout))
-    sit_for (Vminibuffer_message_timeout, 0, 2);
-  else
-    sit_for (Qt, 0, 2);
-
-  del_range_both (osize, osize_byte, ZV, ZV_BYTE, 1);
-  SET_PT_BOTH (opoint, opoint_byte);
-  if (!NILP (Vquit_flag))
-    {
-      Vquit_flag = Qnil;
-      Vunread_command_events = Fcons (make_number (quit_char), Qnil);
-    }
-  Vinhibit_quit = oinhibit;
-}
 \f
 void
 init_minibuf_once ()