mirror of
https://github.com/magnars/multiple-cursors.el.git
synced 2025-10-13 13:03:03 +00:00

Yes, on OS X, one might have: ECUKES_EMACS='/Applications/Emacs 23.app/Contents/MacOS/Emacs'
13 lines
217 B
Bash
Executable File
13 lines
217 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
ECUKES_EMACS=${ECUKES_EMACS:-$(which emacs)}
|
|
|
|
echo "*** Emacs version ***"
|
|
echo "ECUKES_EMACS = $ECUKES_EMACS"
|
|
"$ECUKES_EMACS" --version
|
|
echo
|
|
|
|
exec ./util/ecukes/ecukes --graphical
|