summaryrefslogtreecommitdiffstats
path: root/Mac/Contrib/BBPy.lm
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-05-17 12:45:13 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-05-17 12:45:13 (GMT)
commit6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5 (patch)
tree68fa306974cc05de44d5c5c07ba62a739db3aa72 /Mac/Contrib/BBPy.lm
parentdfebe90c4c04a7a36e4542907118ddce97085868 (diff)
downloadcpython-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.zip
cpython-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.tar.gz
cpython-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.tar.bz2
Fixed macroman<->latin1 conversion. Some chars don't
exist in latin1, but at least the roundtrip results in the same macroman characters.
Diffstat (limited to 'Mac/Contrib/BBPy.lm')
-rw-r--r--Mac/Contrib/BBPy.lm/BBPy.c2
-rw-r--r--Mac/Contrib/BBPy.lm/PythonBBLM.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Contrib/BBPy.lm/BBPy.c b/Mac/Contrib/BBPy.lm/BBPy.c
index 85f0dd2..bcb8d4e 100644
--- a/Mac/Contrib/BBPy.lm/BBPy.c
+++ b/Mac/Contrib/BBPy.lm/BBPy.c
@@ -56,7 +56,7 @@ char start(struct runloc& r,BBLMParamBlock &pb)
r.last_start = pb.fCalcRunParams.fStartOffset;
r.pos = pb.fCalcRunParams.fStartOffset;
r.p = ((unsigned char*)pb.fText) + pb.fCalcRunParams.fStartOffset;
- // Adjust for the gap if we¹re not already past it.
+ // Adjust for the gap if weÕre not already past it.
if ((!r.past_gap) && (r.pos >= pb.fTextGapLocation)){
r.p += pb.fTextGapLength;
r.past_gap = true;
diff --git a/Mac/Contrib/BBPy.lm/PythonBBLM.txt b/Mac/Contrib/BBPy.lm/PythonBBLM.txt
index c43727a..540060a 100644
--- a/Mac/Contrib/BBPy.lm/PythonBBLM.txt
+++ b/Mac/Contrib/BBPy.lm/PythonBBLM.txt
@@ -2,7 +2,7 @@ This is the Python Language Module for BBEdit.
This software is a plugin to Bare Bones Software's BBEdit 6.0.2 (or more), designed to make editing & browsing Python Language files easer.
-It parses any file ending in .py (or extentions of your choice.) providing BBEdit with the information BBEdit needs to provide services for python files similar to those it provides for 'C'. Namely: syntax coloring and populating BBEdit's 'Ÿ' popup menu with file's functions and classes.
+It parses any file ending in .py (or extentions of your choice.) providing BBEdit with the information BBEdit needs to provide services for python files similar to those it provides for 'C'. Namely: syntax coloring and populating BBEdit's '€' popup menu with file's functions and classes.
This Plug-in needs to be placed in your :BBEdit 6.0:BBEdit Support:Language Modules: folder.