aboutsummaryrefslogtreecommitdiff
path: root/generic/proof-syntax.el
diff options
context:
space:
mode:
authorDavid Aspinall2009-12-01 10:02:10 +0000
committerDavid Aspinall2009-12-01 10:02:10 +0000
commitba2f03865ef50975d5ac2b0261d93fbe4b4eb837 (patch)
treec099156d386dc87a7d0d7923c5f3ab4959559a62 /generic/proof-syntax.el
parentaea8b40199426cc6e9be5b56853b7e824be5807f (diff)
proof-splice-separator -> mapconcat builtin
Diffstat (limited to 'generic/proof-syntax.el')
-rw-r--r--generic/proof-syntax.el11
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/proof-syntax.el b/generic/proof-syntax.el
index 6c04e111..1c86e6f5 100644
--- a/generic/proof-syntax.el
+++ b/generic/proof-syntax.el
@@ -269,17 +269,6 @@ Any other %-prefixed character inserts itself."
(if acc (insert acc))
(if pos (goto-char pos))))
-;;;###autoload
-(defun proof-splice-separator (sep strings)
- "Splice SEP into list of STRINGS, ignoring nil entries."
- (let (stringsep nextsep)
- (while strings
- (when (car strings) ; suppress nils
- (setq stringsep (concat stringsep nextsep (car strings)))
- (setq nextsep sep))
- (setq strings (cdr strings)))
- stringsep))
-
(provide 'proof-syntax)
;;; proof-syntax.el ends here