[BACK]Return to asir-mode.el CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows / post-msg-asirgui

Diff for /OpenXM_contrib2/windows/post-msg-asirgui/asir-mode.el between version 1.12 and 1.13

version 1.12, 2013/11/27 13:39:08 version 1.13, 2013/11/27 17:18:07
Line 2 
Line 2 
 ;;  ;;
 ;; asir-mode.el -- asir mode  ;; asir-mode.el -- asir mode
 ;;  ;;
 ;; $OpenXM: OpenXM_contrib2/windows/post-msg-asirgui/asir-mode.el,v 1.11 2013/11/27 04:40:41 takayama Exp $  ;; $OpenXM: OpenXM_contrib2/windows/post-msg-asirgui/asir-mode.el,v 1.12 2013/11/27 13:39:08 ohara Exp $
   
 ;; This program is free software: you can redistribute it and/or modify  ;; This program is free software: you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by  ;; it under the terms of the GNU General Public License as published by
Line 31 
Line 31 
 ;; The following key binding can be used:  ;; The following key binding can be used:
 ;; C-c s     Asir starts up in another window.  ;; C-c s     Asir starts up in another window.
 ;; C-c t     Asir terminates.  ;; C-c t     Asir terminates.
   ;; C-c a     Abort current calculation.
 ;; C-c l     The current buffer is loaded to Asir as a file.  ;; C-c l     The current buffer is loaded to Asir as a file.
 ;; C-c r     Selected region is loaded to Asir as a file.  ;; C-c r     Selected region is loaded to Asir as a file.
 ;; C-c p     Selected region is pasted to Asir.  ;; C-c p     Selected region is pasted to Asir.
Line 150 
Line 151 
             (insert-buffer-substring buffer start end)              (insert-buffer-substring buffer start end)
             (comint-send-input))))))              (comint-send-input))))))
   
   (defun asir-abort ()
     "Abort calculation on asir"
     (interactive)
     (if (eq system-type 'windows-nt)
       ;; for Windows
         (let ((exec-path (asir-effective-exec-path)))
           (start-process "asir-proc-cmdasir" nil "cmdasir" "--abort"))
       ;; for UNIX
       (save-excursion
         (if (get-buffer asir-cmd-buffer-name)
             (progn
               (set-buffer asir-cmd-buffer-name)
               (comint-kill-input)
               (comint-interrupt-subjob)
               (goto-char (point-max))
               (insert "t\ny")
               (comint-send-input)
               )))))
   
 ;;;; Extension for CC-mode.  ;;;; Extension for CC-mode.
   
 (require 'cc-mode)  (require 'cc-mode)
Line 188 
Line 208 
                   '("----"                    '("----"
                         ["Start Asir" asir-start t]                          ["Start Asir" asir-start t]
                         ["Terminate Asir" asir-terminate t]                          ["Terminate Asir" asir-terminate t]
                           ["Abort calcuration on Asir" asir-abort t]
                         ["Execute Current Buffer on Asir" asir-execute-current-buffer (buffer-file-name)]                          ["Execute Current Buffer on Asir" asir-execute-current-buffer (buffer-file-name)]
                         ["Execute Region on Asir" asir-execute-region mark-active]                          ["Execute Region on Asir" asir-execute-region mark-active]
                         ["Paste Region to Asir" asir-paste-region mark-active]                          ["Paste Region to Asir" asir-paste-region mark-active]
Line 226  Each list item should be a regexp matching a single id
Line 247  Each list item should be a regexp matching a single id
 ;; Key binding for asir-mode  ;; Key binding for asir-mode
 (define-key asir-mode-map (kbd "C-c s") 'asir-start)  (define-key asir-mode-map (kbd "C-c s") 'asir-start)
 (define-key asir-mode-map (kbd "C-c t") 'asir-terminate)  (define-key asir-mode-map (kbd "C-c t") 'asir-terminate)
   (define-key asir-mode-map (kbd "C-c a") 'asir-abort)
 (define-key asir-mode-map (kbd "C-c l") 'asir-execute-current-buffer)  (define-key asir-mode-map (kbd "C-c l") 'asir-execute-current-buffer)
 (define-key asir-mode-map (kbd "C-c r") 'asir-execute-region)  (define-key asir-mode-map (kbd "C-c r") 'asir-execute-region)
 (define-key asir-mode-map (kbd "C-c p") 'asir-paste-region)  (define-key asir-mode-map (kbd "C-c p") 'asir-paste-region)

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>