<div class="gmail_quote">On Wed, Jan 2, 2013 at 2:53 AM, Pierpaolo Bernardi <span dir="ltr"><<a href="mailto:olopierpa@gmail.com" target="_blank">olopierpa@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Ctrl-c is bound to the emacs command which means "pass the next<br>
keystroke to the inferior process". That's the reason why you use<br>
ctrl-c <x> to send <x> uninterpreted to erlang.<br>
<br></blockquote><div>Well the two keystrokes is hardly the problem !<br>That erlang hangs emacs is what I am asking about :D<br><br>On a related note surely C-c C-g should have been setup to send C-g to erlang shell?<br>

<br>For now I have hacked up this elisp for this<br>However I find it hard to believe that I am the first one to want this<br><br>---------------------------------------<br><div id=":1f6">(defun inf-ctl-g ()<br>  (interactive)<br>
  (comint-send-string (current-buffer) (make-string 1 ?\C-g)))<br>
<br>(add-hook 'erlang-shell-mode-hook<br>      (lambda () <br>        (define-key erlang-shell-mode-map (kbd "C-c C-g") 'inf-ctl-g)))</div><br>
</div></div>