branch: externals/ellama
commit de56786afc238b2a3658f8145eefc4882371e913
Author: Sergey Kostyaev <sskosty...@gmail.com>
Commit: Sergey Kostyaev <sskosty...@gmail.com>

    Fix version regex in ellama-manual.el
    
    Updated the version regex to correctly match version numbers containing 
zeros.
---
 ellama-manual.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ellama-manual.el b/ellama-manual.el
index ae2035ecab..c4a843ea3c 100644
--- a/ellama-manual.el
+++ b/ellama-manual.el
@@ -48,7 +48,7 @@
                                         "ellama.el"))
                    (save-excursion
                      (goto-char (point-min))
-                     (re-search-forward ";; Version: \\([1-9\\.]+\\)")
+                     (re-search-forward ";; Version: \\([0-9\\.]+\\)")
                      (match-string 1))))
         (buf (find-file-noselect
               (file-name-concat

Reply via email to