User: james
Date: 06/05/17 00:52:51
Modified: packages/xemacs-packages/haskell-mode ChangeLog
haskell-ghci.el haskell-hugs.el
Log:
Update uses of defunct comint interfaces to the current interface. See
xemacs-patches message <m3hd3taiml.fsf(a)jerrypc.cs.usu.edu>.
Revision Changes Path
1.24 +6 -0 XEmacs/packages/xemacs-packages/haskell-mode/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/haskell-mode/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -p -r1.23 -r1.24
--- ChangeLog 2006/03/15 06:07:24 1.23
+++ ChangeLog 2006/05/16 22:52:48 1.24
@@ -1,3 +1,9 @@
+2006-05-13 Jerry James <james(a)xemacs.org>
+
+ * haskell-ghci.el (haskell-ghci-start-process): Replace use of
+ comint-input-sentinel with comint-input-filter-functions.
+ * haskell-hugs.el (haskell-hugs-start-process): Ditto.
+
2006-03-15 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.08 released.
1.5 +1 -1 XEmacs/packages/xemacs-packages/haskell-mode/haskell-ghci.el
Index: haskell-ghci.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/haskell-mode/haskell-ghci.el,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- haskell-ghci.el 2006/03/15 05:18:23 1.4
+++ haskell-ghci.el 2006/05/16 22:52:48 1.5
@@ -183,7 +183,7 @@ Prompt for a list of args if called with
;; Track directory changes using the `:cd' command.
(setq shell-cd-regexp ":cd")
(setq shell-dirtrackp t)
- (setq comint-input-sentinel 'shell-directory-tracker)
+ (add-hook 'comint-input-filter-functions 'shell-directory-tracker)
;; GHCi prompt should be of the form `ModuleName> '.
(setq comint-prompt-regexp "^\\*?[A-Z][\\._a-zA-Z0-9]*\\(
\\*?[A-Z][\\._a-zA-Z0-9]*\\)*> ")
1.4 +1 -1 XEmacs/packages/xemacs-packages/haskell-mode/haskell-hugs.el
Index: haskell-hugs.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/haskell-mode/haskell-hugs.el,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- haskell-hugs.el 2006/03/15 05:18:23 1.3
+++ haskell-hugs.el 2006/05/16 22:52:48 1.4
@@ -181,7 +181,7 @@ Prompts for a list of args if called wit
(make-local-variable 'shell-dirtrackp)
(setq shell-cd-regexp ":cd")
(setq shell-dirtrackp t)
- (setq comint-input-sentinel 'shell-directory-tracker)
+ (add-hook 'comint-input-filter-functions 'shell-directory-tracker)
; ? or module name in Hugs 1.4
(setq comint-prompt-regexp "^\? \\|^[A-Z][_a-zA-Z0-9\.]*> ")
;; comint's history syntax conflicts with Hugs syntax, eg. !!
Show replies by date