summaryrefslogtreecommitdiff
path: root/pl/plvocab.c
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>2013-03-25 15:03:42 -0600
committerHenry Stiles <henry.stiles@artifex.com>2013-03-26 08:44:06 -0600
commitfca91ea554583d6f298f1c803ccf4d395b5dc94f (patch)
tree757cda56aa3133d2b84bbc295f4a3320f12443a9 /pl/plvocab.c
parentd2a1f2e9de96d9fe70225302fd304309a19ef787 (diff)
downloadghostpdl-fca91ea554583d6f298f1c803ccf4d395b5dc94f.tar.gz
Fix the fallout of a gnu indent bug introduced with the indentation
change, commit bc86bd6. Unfortuntaly, gnu indent 2.2 adds new blank lines after each local variable declaration when the user requests that blocks of local declaration be separated from the procedure body with a blank line. This fix removes the extraneous blank lines.
Diffstat (limited to 'pl/plvocab.c')
-rw-r--r--pl/plvocab.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/pl/plvocab.c b/pl/plvocab.c
index 08ff50ec0..01da3e097 100644
--- a/pl/plvocab.c
+++ b/pl/plvocab.c
@@ -1809,9 +1809,7 @@ uint
pl_map_Unicode_to_MSL(uint uni, uint symbol_set)
{
uint low = 0;
-
uint high = pl_map_u2m_size - 1;
-
uint mid;
/* A symbol map entry of 0xFFFF indicates that no printable
@@ -1844,9 +1842,7 @@ uint
pl_map_MSL_to_Unicode(uint msl, uint symbol_set)
{
uint low = 0;
-
uint high = pl_map_m2u_size - 1;
-
uint mid;
/* Binary search, right out of K&R */