From 688a4d107de497bbed669a574f020f94eef40d5d Mon Sep 17 00:00:00 2001 From: gabriele balducci Date: Thu, 22 Apr 2021 14:05:58 +0159 Subject: [PATCH] fix definition of boxes-types-alist to catch up with changed output layout of "boxes -l" --- doc/boxes.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/boxes.el b/doc/boxes.el index 9fe5726..199a758 100644 --- a/doc/boxes.el +++ b/doc/boxes.el @@ -51,7 +51,7 @@ (call-process "boxes" nil t nil "-l") (goto-char (point-min)) (let ((retval nil)) - (while (re-search-forward "^\\([a-zA-Z][a-zA-Z0-9-]+\\) (.*):" nil t) + (while (re-search-forward "^\\([a-zA-Z][a-zA-Z0-9-]+\\)" nil t) (add-to-list 'retval (cons (match-string 1) (match-string 1)))) retval)))