aboutsummaryrefslogtreecommitdiff
path: root/generic/proof-syntax.el
diff options
context:
space:
mode:
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