aboutsummaryrefslogtreecommitdiff
path: root/bin/"
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2014-06-03 14:29:06 -0400
committerRuss Cox <rsc@swtch.com>2014-06-03 14:29:06 -0400
commitfbe3f344c14d002316338a38d35f7227e94f2844 (patch)
tree025921b689317f5c05921695dbdcb40dc16e010b /bin/"
parent50ababbd552abfa8ef3b16ccdaea54b58f5c031c (diff)
downloadplan9port-fbe3f344c14d002316338a38d35f7227e94f2844.tar.gz
plan9port-fbe3f344c14d002316338a38d35f7227e94f2844.tar.bz2
plan9port-fbe3f344c14d002316338a38d35f7227e94f2844.zip
build: rename " and "" to quote1 and quote2 for hg
They'll be copied back during installation but then hg doesn't have to create those files on systems that have trouble with them. TBR=rsc https://codereview.appspot.com/105800043
Diffstat (limited to 'bin/"')
-rwxr-xr-xbin/"27
1 files changed, 0 insertions, 27 deletions
diff --git a/bin/" b/bin/"
deleted file mode 100755
index e0f7c8f9..00000000
--- a/bin/"
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/local/plan9/bin/rc
-
-. 9.rc
-
-fn text {
- if(~ $winid [0-9]*)
- 9p read acme/$winid/body
- if not if(~ $text9term unix!*)
- dial -e $text9term </dev/null
- if not
- status=''
-}
-
-PROMPT='[^ ]*[%;$#][ ]+'
-
-fn cmds {
- text | sed -n 's/^'$PROMPT'([^"])/ \1/p'
-}
-
-switch($#*) {
-case 0
- cmds | tail -1
-case *
- cmds | grep -n '^ '^$"* | tail -r |
- sort -u +1 | sort -n |
- sed 's/^[0-9]+: //'
-}