Skip to content

Commit

Permalink
retag RenameAll as RenameAllN; fix the issue with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
grammarware committed Jan 23, 2013
1 parent 2f94f2d commit d35cc96
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion shared/generators/casexbgf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /bin/sh
# wiki: RenameAll
# wiki: RenameAllN
# Get our hands on basedir
LOCAL1=${PWD}
cd `dirname $0`
Expand Down
2 changes: 1 addition & 1 deletion shared/prolog/cli/casexbgf.pro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:- ensure_loaded('../slps.pro').
% wiki: RenameAll
% wiki: RenameAllN

casexbgf('1',all,down).
casexbgf('2',all,up).
Expand Down
2 changes: 1 addition & 1 deletion topics/documents/wiki/texts
Submodule texts updated from 754175 to bc54f6
2 changes: 1 addition & 1 deletion topics/documents/wiki/updFiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
rd = open(os.path.join(root,f),'r')
txt = ''.join(rd.readlines())
if txt.find('@wiki')>-1:
for where in txt.split('@wiki{')[1].split('}')[0].split(','):
for where in map(lambda x:x.strip(),txt.split('@wiki{')[1].split('}')[0].split(',')):
g = where[0].upper()+where[1:]
good = os.path.join(root, f).split('projects/slps/')[1]
if g in maps.keys():
Expand Down
2 changes: 1 addition & 1 deletion topics/mutation/naming/enforce.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/Library/Frameworks/Python.framework/Versions/3.1/bin/python3
# -*- coding: utf-8 -*-
# wiki: RenameAll
# wiki: RenameAllN
import os,sys
sys.path.append(os.getcwd().split('slps')[0]+'slps/shared/python')
import BGF3
Expand Down

0 comments on commit d35cc96

Please sign in to comment.