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

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

[elpa] externals/smalltalk-mode 6a18dea 23/34: change defun* to defun


From: Stefan Monnier
Subject: [elpa] externals/smalltalk-mode 6a18dea 23/34: change defun* to defun
Date: Tue, 9 Apr 2019 22:30:45 -0400 (EDT)

branch: externals/smalltalk-mode
commit 6a18dea59874db96cb2163c6644c74a3f436542e
Author: Denis Washington <address@hidden>
Commit: Paolo Bonzini <address@hidden>

    change defun* to defun
---
 smalltalk-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/smalltalk-mode.el b/smalltalk-mode.el
index 0bd2711..a209db2 100644
--- a/smalltalk-mode.el
+++ b/smalltalk-mode.el
@@ -1148,7 +1148,7 @@ Whitespace is defined as spaces, tabs, and comments."
 (defun smalltalk-goto-next-keyword ()
   (goto-char (smalltalk-next-keyword)))
 
-(defun* smalltalk-previous-keyword (&key (original-point (point)))
+(defun smalltalk-previous-keyword (&key (original-point (point)))
   (smalltalk-backward-whitespace)
   (if (looking-back "[>[({.^]")
       (progn (goto-char original-point) (point))
@@ -1158,7 +1158,7 @@ Whitespace is defined as spaces, tabs, and comments."
          (prog1 (point) (goto-char original-point))
        (smalltalk-previous-keyword :original-point original-point)))))
 
-(defun* smalltalk-next-keyword (&key (original-point (point)))
+(defun smalltalk-next-keyword (&key (original-point (point)))
   (smalltalk-forward-whitespace)
   (if (looking-at "[])}.]")
       (progn (goto-char original-point) (point))



reply via email to

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