Skip to content

Commit

Permalink
Cosmetic style changes in subset_font.otf.
Browse files Browse the repository at this point in the history
These are just cosmetic style changes.  No behavior change is intended.

BUG=
TEST=compile
REF_BUG=19289484,19418102
REF_CL=87127754
  • Loading branch information
Noriyuki Takahashi authored and yukawa committed Nov 9, 2015
1 parent c29e55d commit 1d3858f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/android/gen_subset_font.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ def MakeSubsetFont(fonttools_path, unicodes, input_font, output_font):
# to temporary directory and copy the result with renaming.
shutil.copy(input_font, tempdir)
temp_input_font = os.path.join(tempdir, os.path.basename(input_font))
commands = ['python', os.path.join(fonttools_path, 'subset.py'),
python_cmd = 'python'
commands = [python_cmd, os.path.join(fonttools_path, 'subset.py'),
temp_input_font]
commands.extend(['U+%08x' % ord(char) for char in unicodes])
env = os.environ.copy()
Expand Down Expand Up @@ -136,4 +137,3 @@ def main():

if __name__ == '__main__':
main()

2 changes: 1 addition & 1 deletion src/mozc_version_template.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MAJOR=2
MINOR=17
BUILD=2225
BUILD=2226
REVISION=102
# NACL_DICTIONARY_VERSION is the target version of the system dictionary to be
# downloaded by NaCl Mozc.
Expand Down

0 comments on commit 1d3858f

Please sign in to comment.