File: 05_hpgl.c.diff

package info (click to toggle)
hp2xx 3.4.4-11
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 3,500 kB
  • sloc: ansic: 20,023; makefile: 121
file content (45 lines) | stat: -rw-r--r-- 1,353 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Description: upstream patch
Author: Christian T. Steigies <cts@debian.org>
Last-Update: 2018-12-04
--- hp2xx.orig/sources/hpgl.c~	2003-06-21 19:54:45.000000000 +0200
+++ hp2xx/sources/hpgl.c	2010-02-10 14:22:10.585264000 +0100
@@ -2622,9 +2622,6 @@
 					fprintf(stderr,
 						"only fixed fonts available\n");
 				break;
-			case 3:	/* font pitch */
-			case 4:	/* font height */
-			case 5:	/* posture */
 			case 6:	/* stroke weight */
 				if (read_float(&ftmp, hd))
 					par_err_exit(2, cmd, hd);
@@ -2636,6 +2633,9 @@
 					tp->astrokewidth = 0.11 + ftmp / 70.;	/* 0.01 ... 0.21 mm */
 				}
 				break;
+			case 3:	/* font pitch */
+			case 4:	/* font height */
+			case 5:	/* posture */
 			case 7:	/* typeface */
 				if (read_float(&csfont, hd))
 					par_err_exit(2, cmd, hd);
@@ -3720,9 +3720,6 @@
 					fprintf(stderr,
 						"only fixed fonts available\n");
 				break;
-			case 3:	/* font pitch */
-			case 4:	/* font height */
-			case 5:	/* posture */
 			case 6:	/* stroke weight */
 				if (read_float(&ftmp, hd))
 					par_err_exit(2, cmd, hd);
@@ -3734,6 +3731,9 @@
 					tp->sstrokewidth = 0.11 + ftmp / 70.;	/* 0.01 ... 0.21 mm */
 				}
 				break;
+			case 3:	/* font pitch */
+			case 4:	/* font height */
+			case 5:	/* posture */
 			case 7:	/* typeface */
 				if (read_float(&csfont, hd))
 					par_err_exit(2, cmd, hd);