diff options
| author | Hendrik Tews | 2011-01-26 15:50:40 +0000 |
|---|---|---|
| committer | Hendrik Tews | 2011-01-26 15:50:40 +0000 |
| commit | 4d923ab403743c3c091ba3feec10757fae3b2fec (patch) | |
| tree | 272e8ee75df5a33e3b6f3803d9d8a97b985a7a31 /coq | |
| parent | e68f0f98fc69097fd9269a994ecdc5a04f498577 (diff) | |
- more info on the elements of proof-action-list; the COMMANDS
list in it should be concatenated with (mapconcat 'identity
COMMANDS " "), which is not the case proof-shell-insert.
Diffstat (limited to 'coq')
| -rw-r--r-- | coq/coq.el | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1668,8 +1668,7 @@ compilation (if necessary) of the dependencies." (coq-object-hash-symbol nil) string) (dolist (item queueitems) - (let (;; XXX car or concat ? - (string (car (nth 1 item)))) + (let ((string (mapconcat 'identity (nth 1 item) " "))) (when (and string (string-match coq-require-command-regexp string)) (let ((span (car item)) |
