all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* End of file during parsing?
@ 2005-04-10 20:12 Rui Tiago Matos
  2005-04-10 23:37 ` Peter Dyballa
  0 siblings, 1 reply; 5+ messages in thread
From: Rui Tiago Matos @ 2005-04-10 20:12 UTC (permalink / raw)


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?

[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
}

^ permalink raw reply	[flat|nested] 5+ messages in thread
[parent not found: <mailman.1001.1113162562.2895.help-gnu-emacs@gnu.org>]

end of thread, other threads:[~2005-04-11 21:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-10 20:12 End of file during parsing? Rui Tiago Matos
2005-04-10 23:37 ` Peter Dyballa
2005-04-10 23:47   ` Rui Tiago Matos
     [not found] <mailman.1001.1113162562.2895.help-gnu-emacs@gnu.org>
2005-04-11  3:39 ` Barry Margolin
2005-04-11 21:59   ` Rui Tiago Matos

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.