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

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

[elpa] externals/lentic 0a96ba6fe8 304/333: Remove pointless oset


From: ELPA Syncer
Subject: [elpa] externals/lentic 0a96ba6fe8 304/333: Remove pointless oset
Date: Tue, 27 Feb 2024 13:00:47 -0500 (EST)

branch: externals/lentic
commit 0a96ba6fe8868722297c08f20f4c7669587745ba
Author: Phillip Lord <phillip.lord@russet.org.uk>
Commit: Phillip Lord <phillip.lord@russet.org.uk>

    Remove pointless oset
    
    The oset forms were copied from somewhere and do precisely nothing.
---
 lentic-script.el | 37 +++++++++++++++++++------------------
 1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/lentic-script.el b/lentic-script.el
index ce880c0467..93b3b9022a 100644
--- a/lentic-script.el
+++ b/lentic-script.el
@@ -60,36 +60,37 @@
     :lentic-file
     (lentic-script-lentic-file))))
 
+;;;###autoload
 (lentic-script-hook 'python-mode-hook
                     'lentic-python-script-init)
 
 ;;;###autoload
 (defun lentic-bash-script-init ()
-  (lentic-m-oset
-   (lentic-cookie-unmatched-commented-chunk-configuration
-    "temp"
-    :this-buffer (current-buffer)
-    :comment "## "
-    :comment-start "#\\\+BEGIN_SRC sh"
-    :comment-stop "#\\\+END_SRC"
-    :lentic-file
-    (lentic-script-lentic-file))))
+  (lentic-cookie-unmatched-commented-chunk-configuration
+   "temp"
+   :this-buffer (current-buffer)
+   :comment "## "
+   :comment-start "#\\\+BEGIN_SRC sh"
+   :comment-stop "#\\\+END_SRC"
+   :lentic-file
+   (lentic-script-lentic-file)))
 
+;;;###autoload
 (lentic-script-hook 'shell-mode-hook
                     'lentic-bash-script-init)
 
 ;;;###autoload
 (defun lentic-lua-script-init ()
-  (lentic-m-oset
-   (lentic-cookie-unmatched-commented-chunk-configuration
-    "temp"
-    :this-buffer (current-buffer)
-    :comment "-- "
-    :comment-start "#\\\+BEGIN_SRC lua"
-    :comment-stop "#\\\+END_SRC"
-    :lentic-file
-    (lentic-script-lentic-file))))
+  (lentic-cookie-unmatched-commented-chunk-configuration
+   "temp"
+   :this-buffer (current-buffer)
+   :comment "-- "
+   :comment-start "#\\\+BEGIN_SRC lua"
+   :comment-stop "#\\\+END_SRC"
+   :lentic-file
+   (lentic-script-lentic-file)))
 
+;;;###autoload
 (lentic-script-hook 'lua-mode-hook
                     #'lentic-lua-script-init)
 



reply via email to

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