aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Lorenzon2018-08-29 05:28:32 +0200
committerNoam Postavsky2018-09-16 20:25:44 -0400
commitb2c1b03f6ba1fbf0514bd51dfbbc36d202d0c807 (patch)
tree88a661ae094b19ddc83045414f5132edf84f1e66
parentdb64d4d082bb2578e5e9691f839dfb4e4c6306aa (diff)
downloademacs-b2c1b03f6ba1fbf0514bd51dfbbc36d202d0c807.tar.gz
emacs-b2c1b03f6ba1fbf0514bd51dfbbc36d202d0c807.zip
Update pconf for compile.el mode-line-process changes
* lisp/cedet/ede/pconf.el (ede-proj-configure-synchronize): Check the first list element of mode-line-process (Bug#32564). Copyright-paperwork-exempt: yes
-rw-r--r--lisp/cedet/ede/pconf.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/ede/pconf.el b/lisp/cedet/ede/pconf.el
index 9368420a740..495903d7efb 100644
--- a/lisp/cedet/ede/pconf.el
+++ b/lisp/cedet/ede/pconf.el
@@ -135,7 +135,7 @@ don't do it. A value of nil means to just do it.")
135 (with-current-buffer "*compilation*" 135 (with-current-buffer "*compilation*"
136 (goto-char (point-max)) 136 (goto-char (point-max))
137 137
138 (when (not (string= mode-line-process ":exit [0]")) 138 (when (not (string= (car mode-line-process) ":exit [0]"))
139 (error "Configure failed!")) 139 (error "Configure failed!"))
140 140
141 ;; The Makefile is now recreated by configure? 141 ;; The Makefile is now recreated by configure?