all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: martin rudalics <rudalics@gmx.at>
To: axiomize@yahoo.de
Cc: help-gnu-emacs@gnu.org
Subject: Re: axiom mode
Date: Mon, 11 Jun 2007 10:39:15 +0200	[thread overview]
Message-ID: <466D0A33.8020903@gmx.at> (raw)

 > To be honest, I don't understand this code at all, it's not mine.

Your current code does the following:

In `axiom-comint-run' you leave it to `make-comint' to create a new
axiom process and return its object.

In `axiom-run' you set `axiom-process' to that object with

   (setq axiom-process (get-buffer-process (current-buffer)))

This works because, presumably, you never try to associate a second
process with the current buffer (it could fail miserably if you did).

You define `axiom-process' as a "global" variable, hence it may
reference one and only one "axiom process" at any instant of time.  If
you want a couple of axiom processes to coexist simultaneously you have
to make `axiom-process' buffer-local.  Then you can try to maintain a
one-to-one correspondence between axiom buffers and axiom processes.

 > What I would
 > like to have is the behaviour of shell mode: usually M-x axiom should switch to
 > the running axiom, but optionally, something like
 >
 > (add-hook 'shell-mode-hook (lambda () (rename-uniquely)))
 >
 > or renaming the current axiom buffer should give us a new axiom.

I don't understand what "usually" and "optionally" refer to.  You would
have to state precisely what you do currently and what you want to do
differently.  `rename-uniquely' simply generates a new name for the
current buffer, it doesn't create a new process.  On the other hand you
can always create a new buffer and start a new process from that buffer.

             reply	other threads:[~2007-06-11  8:39 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-11  8:39 martin rudalics [this message]
2007-06-11 12:45 ` axiom mode martin rudalics
     [not found] <mailman.1911.1181551178.32220.help-gnu-emacs@gnu.org>
2007-06-11  9:11 ` Martin Rubey
     [not found] <mailman.1862.1181477508.32220.help-gnu-emacs@gnu.org>
2007-06-10 14:24 ` Martin Rubey
  -- strict thread matches above, loose matches on Subject: below --
2007-06-10 12:11 martin rudalics
     [not found] <9qd505x9pf.fsf@aquin.mat.univie.ac.at>
2007-06-09 21:10 ` Martin Rubey
2007-06-09 18:29 Martin Rubey
2007-06-09 21:50 ` Tom Tromey
     [not found] ` <mailman.1841.1181428556.32220.help-gnu-emacs@gnu.org>
2007-06-10  6:41   ` Martin Rubey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=466D0A33.8020903@gmx.at \
    --to=rudalics@gmx.at \
    --cc=axiomize@yahoo.de \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.