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

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

[nongnu] elpa/scala-mode ababc73 151/217: remove interactive, update fil


From: ELPA Syncer
Subject: [nongnu] elpa/scala-mode ababc73 151/217: remove interactive, update filename.
Date: Sun, 29 Aug 2021 11:31:02 -0400 (EDT)

branch: elpa/scala-mode
commit ababc73445f0a888afc16e0efcc7cf5693976d80
Author: Ivan Malison <IvanMalison@gmail.com>
Commit: Ivan Malison <IvanMalison@gmail.com>

    remove interactive, update filename.
---
 scala-mode2-imenu.el | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/scala-mode2-imenu.el b/scala-mode2-imenu.el
index d16a896..8b64e6a 100644
--- a/scala-mode2-imenu.el
+++ b/scala-mode2-imenu.el
@@ -1,5 +1,5 @@
-;;; scala-mode-lib.el - Major mode for editing scala, common functions
-;;; Copyright (c) 2012 Heikki Vesalainen
+;;; scala-mode-imenu.el - Major mode for editing scala, common functions
+;;; Copyright (c) 2014 Heikki Vesalainen
 ;;; For information on the License, see the LICENSE file
 
 (require 'scala-mode2-syntax)
@@ -10,7 +10,6 @@
   "Controls whether or not the imenu index has definition type information.")
 
 (defun scala-imenu:create-index ()
-  (interactive)
   (let ((class nil) (index nil))
     (goto-char (point-max))
     (while (setq class (scala-imenu:previous-class))
@@ -18,7 +17,6 @@
     (if scala-imenu:should-flatten-index (scala-imenu:flatten-index index) 
index)))
 
 (defun scala-imenu:previous-class ()
-  (interactive)
   (let ((last-point (point)) (class-name nil))
     (scala-syntax:beginning-of-definition)
     (if (eq (point) last-point) nil
@@ -34,7 +32,6 @@
     (match-string-no-properties 2)))
 
 (defun scala-imenu:class-members ()
-  (interactive)
   (let ((start-point (point)))
     (save-excursion (scala-syntax:end-of-definition)
                    (backward-char)



reply via email to

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