diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2006-12-17 16:45:24 -0800 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-12-18 13:34:00 +0000 |
commit | 9d419b5f6925ac8219b490513f2c0e4f2d7c7f74 (patch) | |
tree | ade0148247a1332511a5db94e9ff95d8b80c9b4b /emacs | |
parent | dbf3bb275a8c67f06df1e6e24df320e3d78b2d60 (diff) | |
download | perl-9d419b5f6925ac8219b490513f2c0e4f2d7c7f74.tar.gz |
OS/2-specific fixes, round II
Message-ID: <20061218084524.GA14866@powdermilk.math.berkeley.edu>
p4raw-id: //depot/perl@29580
Diffstat (limited to 'emacs')
-rwxr-xr-x | emacs/ptags | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/ptags b/emacs/ptags index 8039153de7..c017e66731 100755 --- a/emacs/ptags +++ b/emacs/ptags @@ -36,7 +36,7 @@ case "$1" in echo "Building TAGS with relative paths" esac -emacs=`(which emacs || which xemacs) 2>/dev/null` +emacs=`(which emacs || which xemacs || echo emacs) 2>/dev/null` [ -x "$emacs" ] || { echo "can't find emacs or xemacs in PATH"; exit 1; } # Insure proper order (.h after .c, .xs before .c in subdirs): |