emacs-bug-tracker
[Top][All Lists]
Advanced

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

[Emacs-bug-tracker] bug#6450: closed (emacs 23.2; idlwave.el: error in i


From: GNU bug Tracking System
Subject: [Emacs-bug-tracker] bug#6450: closed (emacs 23.2; idlwave.el: error in idlwave-action-and-binding function)
Date: Sat, 19 Jun 2010 02:32:02 +0000

Your message dated Fri, 18 Jun 2010 22:31:28 -0400
with message-id <address@hidden>
and subject line Re: bug#6450: emacs 23.2; idlwave.el: error in 
idlwave-action-and-binding function
has caused the GNU bug report #6450,
regarding emacs 23.2; idlwave.el: error in idlwave-action-and-binding function
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
6450: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=6450
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: emacs 23.2; idlwave.el: error in idlwave-action-and-binding function Date: Thu, 17 Jun 2010 20:33:38 -0400 User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100330 Shredder/3.0.4 While using major mode idlwave I get an error every time I press one of these keys: , > < =

For '=' I get:
call-interactively: Symbol's value as variable is void: idlwave-expand-equal

For ',' I get:
call-interactively: Symbol's value as variable is void: idlwave-surround


I located the error in file idlwave.el in function: idlwave-action-and-binding.
The following patch (using code from idlwave-6.0) fixes the problem:

diff --git a/idlwave.el b/idlwave.el
index e622828..7544a5c 100644
--- a/idlwave.el
+++ b/idlwave.el
@@ -1598,10 +1598,12 @@ Capitalize system variables - action only
           (equal select 'noaction)
           (equal select 'both))
       (define-key idlwave-mode-map key
-        `(lambda ()
-           (interactive)
-           (self-insert-command 1)
-           ,@(if (listp cmd) cmd (list cmd))))))
+        (append `(lambda ()
+                  (interactive)
+                  (self-insert-command 1))
+               (list (if (listp cmd)
+                          cmd
+                        (list cmd)))))))

 ;; Set action and key bindings.
 ;; See description of the function `idlwave-action-and-binding'.


Thanks,
Jose



--- End Message ---
--- Begin Message --- Subject: Re: bug#6450: emacs 23.2; idlwave.el: error in idlwave-action-and-binding function Date: Fri, 18 Jun 2010 22:31:28 -0400 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
Jose Marino wrote:

> While using major mode idlwave I get an error every time I press one
> of these keys: ,  >  <  =

Thanks; fixed.


--- End Message ---

reply via email to

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