From: Barry Margolin <barmar@alum.mit.edu>
Subject: Re: End of file during parsing?
Date: Sun, 10 Apr 2005 23:39:53 -0400 [thread overview]
Message-ID: <barmar-4AAA51.23395310042005@comcast.dca.giganews.com> (raw)
In-Reply-To: mailman.1001.1113162562.2895.help-gnu-emacs@gnu.org
In article <mailman.1001.1113162562.2895.help-gnu-emacs@gnu.org>,
Rui Tiago Matos <tiagomatos@gmail.com> wrote:
> I hacked up a bash function [1] to open some files in different
> frames. It works great after emacs is running. Otherwise it doesn't:
> it opens up emacs but I get:
>
> command-line-1: End of file during parsing
>
> Now, this is very strange because if I use --eval=... from the command
> line directly it works as expected. Anyone has an idea about why this
> doesn't work?
Try changing the command line that invokes emacs in that case to:
emacs21 "$CMDLINE"
The problem is that the shell is splitting the arguments at the spaces
when you don't quote it. So the argument that emacs is seeing is:
--eval=(find-file-other frame
>
> [1]
> emacs ()
> {
> if [ -z "$DISPLAY" ]; then
> emacs21 $@;
> else
> if [ ! "`/bin/ps -U $UID | grep emacs`" ]; then
> local CMDLINE="--eval=";
> local FILE;
> for FILE in $*;
> do
> if ( grep ^/ <<< $FILE ) || ( grep ^~ <<< $FILE ); then
> CMDLINE="$CMDLINE(find-file-other-frame \"$FILE\")";
> else
> CMDLINE="$CMDLINE(find-file-other-frame \"$PWD/$FILE\")";
> fi;
> done;
> if [ "$CMDLINE" != "--eval=" ]; then
> emacs21 $CMDLINE &
> else
> emacs21 &
> fi;
> else
> local CMDLINE="-q";
> local FILE;
> for FILE in $*;
> do
> if ( grep ^/ <<< $FILE ) || ( grep ^~ <<< $FILE ); then
> CMDLINE="$CMDLINE (find-file-other-frame \"$FILE\")";
> else
> CMDLINE="$CMDLINE (find-file-other-frame \"$PWD/$FILE\")";
> fi;
> done;
> if [ "$CMDLINE" != "-q" ]; then
> gnudoit $CMDLINE;
> fi;
> fi;
> fi
> }
--
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***
next parent reply other threads:[~2005-04-11 3:39 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.1001.1113162562.2895.help-gnu-emacs@gnu.org>
2005-04-11 3:39 ` Barry Margolin [this message]
2005-04-11 21:59 ` End of file during parsing? Rui Tiago Matos
2005-04-10 20:12 Rui Tiago Matos
2005-04-10 23:37 ` Peter Dyballa
2005-04-10 23:47 ` Rui Tiago Matos
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=barmar-4AAA51.23395310042005@comcast.dca.giganews.com \
--to=barmar@alum.mit.edu \
/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.