help-smalltalk
[Top][All Lists]
Advanced

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

[Help-smalltalk] Emacs mode changes


From: Lyndon Tremblay
Subject: [Help-smalltalk] Emacs mode changes
Date: Wed, 03 Dec 2003 06:41:21 -0700

In smalltalk-mode.el's 'smalltalk-font-lock-keywords-2', "false" was misspelt to "flase", leading to unhighlition.
 
In gst-mode.el with recent versions of Emacs, this fails by symbol undefinition:
 
(defvar smalltalk-interactor-mode-map
  (let ((keymap (copy-keymap smalltalk-interactor-mode-map)))
This had no problem with Redhat 7.3's Emacs-21.2, but not in NT Emacs 21.2 or NT Emacs 21.3, I am unsure of what changed, but the symbol is not yet defined anymore, with defvar. So changing to this, as is already done with 'smalltalk-ctl-t-map':
 
(defvar smalltalk-interactor-mode-map
  (let ((keymap (make-sparse-keymap)))
Leads to pleasureful Smalltalking.
 
--humasect

reply via email to

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