emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/tuareg 8bf95ce 2/4: mli generation: Be more subtle when ex


From: ELPA Syncer
Subject: [nongnu] elpa/tuareg 8bf95ce 2/4: mli generation: Be more subtle when extracting the signature
Date: Fri, 3 Sep 2021 17:57:43 -0400 (EDT)

branch: elpa/tuareg
commit 8bf95cef4598f05582b94029a8f228d50e2d1dac
Author: Christophe Troestler <Christophe.Troestler@umons.ac.be>
Commit: Christophe Troestler <Christophe.Troestler@umons.ac.be>

    mli generation: Be more subtle when extracting the signature
---
 tuareg.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tuareg.el b/tuareg.el
index 39ebb6d..c945c43 100644
--- a/tuareg.el
+++ b/tuareg.el
@@ -77,6 +77,7 @@
 (eval-when-compile (require 'cl-lib))
 (require 'easymenu)
 (require 'find-file)
+(require 'subr-x)
 (require 'caml-help nil t)
 (require 'caml-types nil t)
 (require 'tuareg-opam)
@@ -2983,7 +2984,7 @@ or indent all lines in the current phrase."
           (if (cddr data)
               (setq sig (merlin--type-enclosing-text data))))))
     (when (and sig (string-match "\\`sig\\>" sig) (>= (length sig) 9))
-      (setq sig (substring sig 6 -3))
+      (setq sig (string-trim (substring sig 3 -3)))
       (replace-regexp-in-string "\n  " "\n" sig))))
 
 (defun tuareg--ff-file-created-hook ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]