]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "Fix display of working text on NS (Bug#23412, Bug#1453)"
authorAlan Third <alan@idiocy.org>
Tue, 11 Feb 2020 17:27:11 +0000 (17:27 +0000)
committerAlan Third <alan@idiocy.org>
Tue, 11 Feb 2020 17:27:11 +0000 (17:27 +0000)
This reverts commit ba042176d8931cdf9441b3b4919ec74b75019494.

Do not merge to master (bug#38851)

lisp/term/ns-win.el
src/nsterm.m

index 6acf6cd1992b8444d855319364197ccc031f769a..90024b001f7c709131df6e121e95188c390655ea 100644 (file)
@@ -314,9 +314,10 @@ The overlay is assigned the face `ns-working-text-face'."
   (interactive)
   (ns-delete-working-text)
   (let ((start (point)))
-    (overlay-put (setq ns-working-overlay (make-overlay start (point)))
-                 'after-string
-                 (propertize ns-working-text 'face 'ns-working-text-face))))
+    (insert ns-working-text)
+    (overlay-put (setq ns-working-overlay (make-overlay start (point)
+                                                       (current-buffer) nil t))
+                'face 'ns-working-text-face)))
 
 (defun ns-echo-working-text ()
   "Echo contents of `ns-working-text' in message display area.
@@ -339,7 +340,8 @@ See `ns-insert-working-text'."
          ;; Still alive?
          (overlay-buffer ns-working-overlay))
     (with-current-buffer (overlay-buffer ns-working-overlay)
-      (overlay-put ns-working-overlay 'after-string nil)
+      (delete-region (overlay-start ns-working-overlay)
+                     (overlay-end ns-working-overlay))
       (delete-overlay ns-working-overlay)))
    ((integerp ns-working-overlay)
     (let ((msg (current-message))
index c1d1d411176e7ec33c676f05fe2c18b9bd02685e..ed2d82ceaef9b1f5bbdd0ec41063d7330d6c116a 100644 (file)
@@ -6456,6 +6456,10 @@ not_in_argv (NSString *arg)
   if (!emacs_event)
     return;
 
+  /* First, clear any working text.  */
+  if (workingText != nil)
+    [self deleteWorkingText];
+
   /* It might be preferable to use getCharacters:range: below,
      cf. https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/CocoaPerformance/Articles/StringDrawing.html#//apple_ref/doc/uid/TP40001445-112378.
      However, we probably can't use SAFE_NALLOCA here because it might
@@ -6484,10 +6488,6 @@ not_in_argv (NSString *arg)
       emacs_event->code = code;
       EV_TRAILER ((id)nil);
     }
-
-  /* Last, clear any working text.  */
-  if (workingText != nil)
-    [self deleteWorkingText];
 }