From 3283696088d4881b06185ed8fa8b74f94e2cbaeb Mon Sep 17 00:00:00 2001 From: Mauro Aranda Date: Mon, 8 Jul 2019 19:22:20 -0300 Subject: [PATCH] Remove duplicated code in octave-eldoc-function * lisp/progmodes/octave.el (octave-eldoc-function): The position of the opening parenthesis in the inferior-octave-process was duplicated. Remove one of the checks. (Bug#36557) --- lisp/progmodes/octave.el | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el index 8a7e24e..6e59401 100644 --- a/lisp/progmodes/octave.el +++ b/lisp/progmodes/octave.el @@ -1630,12 +1630,7 @@ octave-eldoc-function (paren-pos (cadr ppss)) (fn (save-excursion (if (and paren-pos - ;; PAREN-POS must be after the prompt - (>= paren-pos - (if (eq (get-buffer-process (current-buffer)) - inferior-octave-process) - (process-mark inferior-octave-process) - (point-min))) + ;; PAREN-POS must be after the prompt. (or (not (eq (get-buffer-process (current-buffer)) inferior-octave-process)) (< (process-mark inferior-octave-process) -- 2.7.4