aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic
diff options
context:
space:
mode:
authorGravatar Stefan Monnier <monnier@iro.umontreal.ca>2019-01-12 19:42:37 -0500
committerGravatar Stefan Monnier <monnier@iro.umontreal.ca>2019-01-12 19:42:37 -0500
commit58cea1b8ffb02bc546ddb56a669d4094390d4809 (patch)
treed06d857e9839f4662e8d36249e9c55e75a51c9ea /generic
parentfb3b75dab55b6e6befffc53e136422558be5faa0 (diff)
* pg-init.el: Add subdirs during compilation (bug #413)
* generic/pg-user.el (proof-add-completions): `proof-assistant` can also be the empty string :-(
Diffstat (limited to 'generic')
-rw-r--r--generic/pg-user.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/pg-user.el b/generic/pg-user.el
index 57d29f18..d2259ef8 100644
--- a/generic/pg-user.el
+++ b/generic/pg-user.el
@@ -3,7 +3,7 @@
;; This file is part of Proof General.
;; Portions © Copyright 1994-2012 David Aspinall and University of Edinburgh
-;; Portions © Copyright 2003-2018 Free Software Foundation, Inc.
+;; Portions © Copyright 2003-2019 Free Software Foundation, Inc.
;; Portions © Copyright 2001-2017 Pierre Courtieu
;; Portions © Copyright 2010, 2016 Erik Martin-Dorel
;; Portions © Copyright 2011-2013, 2016-2017 Hendrik Tews
@@ -558,7 +558,7 @@ last use time, to discourage saving these into the users database."
(defvar completion-min-length)
(declare-function add-completion "completion"
(string &optional num-uses last-use-time))
- (when proof-assistant
+ (when (> (length proof-assistant) 0)
(mapcar (lambda (cmpl)
;; completion gives error; trapping is tricky so test again
(if (>= (length cmpl) completion-min-length)