1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-26 21:17:40 +00:00
freebsd-ports/devel/codecrusader/files/patch-ag
Will Andrews c9d8d301e9 Major overhaul to make this port work well again. MAINTAINER change is
confirmed by the lack of submissions for updates by the original creator.
Port now depends on the recently-added x11-toolkits/jx and friends ports.

MASTER_SITES moved; make port depend on several other ports instead of
building things itself, allowing for modularity.

PR:		19042
Submitted by:	Mario Sergio Fujikawa Ferriera <lioux@uol.com.br>
2000-06-09 20:39:30 +00:00

30 lines
1.1 KiB
Plaintext

diff -ru code.ORIG/CBFnMenuUpdater.cc code/CBFnMenuUpdater.cc
--- programs/code_crusader/code.ORIG/CBFnMenuUpdater.cc Wed Sep 15 20:11:57 1999
+++ programs/code_crusader/code/CBFnMenuUpdater.cc Sat Nov 6 13:22:12 1999
@@ -21,13 +21,13 @@
#include <jStrStreamUtil.h>
#include <jAssert.h>
-static const JCharacter* kCheckVersionCmd = "ctags --version";
+static const JCharacter* kCheckVersionCmd = "exctags --version";
static const JCharacter* kVersionMarker = "Exuberant Ctags";
-static const JCharacter* kCheckOptionsCmd = "ctags --help";
+static const JCharacter* kCheckOptionsCmd = "exctags --help";
static const JCharacter* kOptionMarker = "--filter-terminator";
static const JCharacter* kGetFnListCmd =
- "ctags --filter=yes --filter-terminator=\f"
+ "exctags --filter=yes --filter-terminator=\f"
" --c-types=f --eiffel-types=f --fortran-types=psf --java-types=m"
" --format=1 --excmd=number --sort=no";
@@ -122,7 +122,7 @@
itsIsActiveFlag = kFalse;
(JGetUserNotification())->ReportError(
- "ctags is not responding correctly, "
+ "exctags is not responding correctly, "
"so the Function menu will not work.");
}
}