]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/gud.el (gud-gdb-completion-at-point): Add hack.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 2 Sep 2014 18:16:32 +0000 (14:16 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 2 Sep 2014 18:16:32 +0000 (14:16 -0400)
(gud-gdb-completions): Remove obsolete workaround.

Fixes: debbugs:18282
lisp/ChangeLog
lisp/progmodes/gud.el

index f729f42da87561cccee9281bb41a83e9fdbcd3fb..c91f43cafa0b99b5744e8cf26c532ca867425589 100644 (file)
@@ -1,3 +1,8 @@
+2014-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/gud.el (gud-gdb-completion-at-point): Add hack (bug#18282).
+       (gud-gdb-completions): Remove obsolete workaround.
+
 2014-09-02  Eli Zaretskii  <eliz@gnu.org>
 
        * subr.el (posn-col-row): Revert the change from commit
index c6fc944bc13d4ada56711cf039e36665bb0dd03a..98912ca5acb835d4fb2f9d2a2a0f291b334fc226 100644 (file)
@@ -809,18 +809,6 @@ CONTEXT is the text before COMMAND on the line."
                                           (current-buffer)
                                           ;; From string-match above.
                                           (length context))))
-    ;; `gud-gdb-run-command-fetch-lines' has some nasty side-effects on the
-    ;; buffer (via `gud-delete-prompt-marker'): it removes the prompt and then
-    ;; re-adds it later, thus messing up markers and overlays along the way.
-    ;; This is a problem for completion-in-region which uses an overlay to
-    ;; create a field.
-    ;; So we restore completion-in-region's field if needed.
-    ;; FIXME: change gud-gdb-run-command-fetch-lines so it doesn't modify the
-    ;; buffer at all.
-    (when (/= start (- (point) (field-beginning)))
-      (dolist (ol (overlays-at (1- (point))))
-        (when (eq (overlay-get ol 'field) 'completion)
-          (move-overlay ol (- (point) start) (overlay-end ol)))))
     ;; Protect against old versions of GDB.
     (and complete-list
         (string-match "^Undefined command: \"complete\"" (car complete-list))
@@ -859,7 +847,14 @@ CONTEXT is the text before COMMAND on the line."
          (save-excursion
            (skip-chars-backward "^ " (comint-line-beginning-position))
            (point))))
-    (list start end
+    ;; FIXME: `gud-gdb-run-command-fetch-lines' has some nasty side-effects on
+    ;; the buffer (via `gud-delete-prompt-marker'): it removes the prompt and
+    ;; then re-adds it later, thus messing up markers and overlays along the
+    ;; way (bug#18282).
+    ;; We use an "insert-before" marker for `start', since it's typically right
+    ;; after the prompt, which works around the problem, but is a hack (and
+    ;; comes with other downsides, e.g. if completion adds text at `start').
+    (list (copy-marker start t) end
           (completion-table-dynamic
            (apply-partially gud-gdb-completion-function
                             (buffer-substring (comint-line-beginning-position)