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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>
The Project Gutenberg eBook of Punch, or the London Charivari, Vol. 148. February 3, 1915. , by Various.
</title>
<link rel="coverpage" href="images/cover.jpg"/>
<style type="text/css">
body {margin-left: 10%; margin-right: 10%;}
p {text-align: justify;}
h1,h2,h3,h4 {text-align: center;}
pre {font-size: 0.7em;}
.sc {font-variant: small-caps;}
.lowercase {text-transform:lowercase;}
.center {text-align: center;}
.stage {padding-left: 6em;}
.caption {font-weight: bold;}
.blockquote {margin-left: 5%;
margin-right: 10%;
font-size: 85%;}
hr {margin-right: 25%; margin-left: 25%; width: 50%;}
hr.full {margin-right: 0%; margin-left: 0%; width: 100%;}
hr.short {margin-right: 40%; margin-left: 40%; width: 20%;}
hr.shorter {margin-right: 37.5%; margin-left: 37.5%; width: 15%;}
span.pagenum {position: absolute; left: 1%; right: 91%; font-size: 8pt; text-indent: 0;}
.poem {margin-left:10%; margin-right:10%; margin-bottom: 1em; text-align: left;}
.poem .stanza {margin: 1em 0em 1em 0em;}
.poem h3 {text-align: left;}
.poem h4 {text-align: left;}
.poem p {margin: 0; padding-left: 3em; text-indent: -3em;}
.poem p.i2 {margin-left: 1em;}
.poem p.i4 {margin-left: 2em;}
.poem p.i6 {margin-left: 3em;}
.poem p.i16 {margin-left: 10em;}
.figcenter, .figright, .figleft {padding: 1em; margin: 0; text-align: center; font-size: 0.8em;}
.figcenter img, .figright img, .figleft img {border: none;}
.figcenter p, .figright p, .figleft p {margin: 0; text-indent: 1em;}
.figcenter {margin: auto;}
.figright {float: right;}
.figleft {float: left;}
p.author {text-align: right; margin-right: 3em;}
table {
margin-left: auto;
margin-right: auto;
}
.break-before {
page-break-before: always;
}
epub headings
.ph1, .ph2, .ph3, .ph4 { text-align: center; text-indent: 0em; font-weight: bold; }
.ph1 { font-size: xx-large; margin: .67em auto; }
.ph2 { font-size: x-large; margin: .75em auto; }
.ph3 { font-size: large; margin: .83em auto; }
.ph4 { font-size: medium; margin: 1.12em auto; }
.poem span.i0 {display: block; margin-left: 0em; padding-left: 3em; text-indent: -3em;}
.poem span.i1 {display: block; margin-left: 0.5em; padding-left: 3em; text-indent: -3em;}
.poem span.i18 {display: block; margin-left: 18em; padding-left: 3em; text-indent: -3em;}
.poem span.i2 {display: block; margin-left: 1em; padding-left: 3em; text-indent: -3em;}
.poem span.i6 {display: block; margin-left: 3em; padding-left: 3em; text-indent: -3em;}
.poem span.i10 {display: block; margin-left: 10em; padding-left: 3em; text-indent: -3em;}
div.trans-note {background: #EEEEEE; border: dashed 1px; border-width: 1px;
margin: 3em 15%; padding: 1em; text-align: center;}
-->
</style>
</head>
<body>
<div>*** START OF THE PROJECT GUTENBERG EBOOK 44933 ***</div>
<hr class="full" />
<h1>PUNCH,<br /><br />
OR THE LONDON CHARIVARI.</h1>
<p class="ph2">Vol. 148.<br /><br /></p>
<hr class="full" />
<p class="ph2">February 10, 1915.<br /><br /></p>
<hr class="full" />
<p><span class="pagenum"><a name="Page_101" id="Page_101">[Pg 101]</a></span></p>
<p class="ph4">CHARIVARIA.</p>
<p>"Kultur belongs to my Germans alone," says the <span class="sc">Kaiser</span>. We were
not aware that the charge had been brought against any other country.</p>
<p class="center">* * *</p>
<p>"The Indians," complains the <i>Frankfurter Zeitung</i>, "have an
extraordinary way of fighting. They jump up, shoot with wonderful
precision, and disappear before one has time to notice them properly."
Our contemporary has evidently not been studying the pages of <i>Punch</i>,
or it would know that the disappearance is worked by the well-known
Indian trick of throwing a rope into the air and climbing up it.</p>
<p class="center">* * *</p>
<p>Letters from the British troops operating in Damaraland show that the
prevailing complaint there is with respect to the heat; and a dear and
very thoughtful old lady writes to suggest that, as our men in Flanders
dislike the cold, it might be possible to arrange an exchange.</p>
<p class="center">* * *</p>
<p>With reference to the attentions paid by German aeroplanes, the other
day, to the British provision establishments at Dunkirk, we understand
that the bombs which were dropped made no impression whatever on our
bully beef, so famous for its durability.</p>
<p class="center">* * *</p>
<p>The Norwich Liberals have selected as their candidate Lieutenant
<span class="sc">Hilton Young</span>, and it has been decided that the election
shall not be contested. It is realised that in time of war "<i>Le monde
appartient aux Jeunes</i>."</p>
<p class="center">* * *</p>
<p>In his account of the dynamiting of the C. P. R. bridge over the St.
Croix river, <span class="sc">Reuter</span> tells us that "A German officer who
has been hanging around the neighbourhood for the past few days has
been arrested." We have a shrewd idea that he may be hanging in the
neighbourhood again very shortly.</p>
<p class="center">* * *</p>
<p>We are surprised that the advocates of Mr. <span class="sc">Willett's</span> Daylight
Saving Bill have been so quiet lately. Surely it would be an enormous
advantage to rush this measure through now so that the Germans may have
less darkness to take advantage of?</p>
<p class="center">* * *</p>
<p>Dr. <span class="sc">Hans Richter</span>, the celebrated <span class="sc">Wagner</span> conductor,
who enjoyed English hospitality for so long, has now expressed the
hope that Germany may punish England who has so profoundly disgraced
herself. It is even said that the amiable Doctor asked to be allowed to
conduct a Parsifal airship to this country.</p>
<p class="center">* * *</p>
<p>Professor <span class="sc">Kobert</span>, of Rostock University, one of Germany's
best-known chemists, is advocating a mixture of pig's blood and
rye-meal as a most nutritious form of bread for his countrymen.
There is, of course, already a certain amount of pig's blood in the
composition of some Germans.</p>
<p class="center">* * *</p>
<p>Our newspapers really ought to be more careful. We feel quite sure
that the following paragraph in <i>The Daily Mail</i> will be quoted in
the German Press as showing the Londoner's fears of a Zeppelin visit:
"The Golder's Green Training Corps yesterday morning mobilised eighty
motor-cars and drove out to Harpenden to see how quickly the corps
could get out of London in case of emergency."</p>
<p class="center">* * *</p>
<p><i>The Times</i> has been discussing the question as to whether khaki is the
best protective colour for soldiers. In this connection it is worth
noting that the uniforms worn by the men of <span class="sc">Kitchener's</span> Army
appear to render them almost completely invisible to the correspondents
of German newspapers in this country, who report that there is only a
mere handful of these soldiers.</p>
<p class="center">* * *</p>
<p>By the way Colonel <span class="sc">Maude</span> pointed out recently in <i>Land and
Water</i> that it is essential that our gunners should be able to watch
our infantry closing on the enemy, and that in this respect khaki is a
drawback. We now hear that the wide-awake Germans are taking the hint,
and that their new uniforms will have scarlet backs, which will not
only help their artillery, but will act as a powerful deterrent should
their troops think of running away.</p>
<p class="center">* * *</p>
<p>Extract from a Book Merchant's Catalogue:—"I venture to assert no
more acceptable gift could be sent to our Heroes on Active Service
than a few cwts. of Literature. A book is the best of all companions
and always useful, for one in the breast pocket has been the means of
saving many a man's life in action." A Society for supplying every
recruit with a complete set of <i>The Encyclopædia Britannica</i> is now, we
believe, in process of formation.</p>
<p class="center">* * *</p>
<p>A book which is stated to have been "kept back on account of the war"
is entitled <i>Hell's Playground</i>. One would have thought it would have
been peculiarly <i>à propos</i>.</p>
<p class="center">* * *</p>
<p>A live frog has been discovered embedded in a piece of coal hewn from a
colliery in the Forest of Dean. It is thought that the colliery owners,
by means of a series of bonuses like this, intend to make their coal
look almost worth the price that is now being charged for it.</p>
<p class="center">* * *</p>
<p>Frankly we were not surprised to hear that the moon was full a little
while ago. In these times our own planet is certainly not a very
desirable place.</p>
<p class="center">* * *</p>
<p>It is now stated that Herr <span class="sc">Liebknecht</span>, the Socialist leader,
who was called to the colours a few days ago, has been relieved of
service in the Landwehr. This is most annoying as it throws out all the
carefully calculated figures of our experts as to the number of men
Germany is putting into the field.</p>
<p class="center">* * *</p>
<p>Even the Censor nods occasionally. <i>The Tailor and Cutter</i> has been
allowed to state that a Holborn tailor is making a uniform for a
sergeant in <span class="sc">Kitchener's</span> Army who stands 6 ft. 8 ins. high.
The fact that we have a man of these dimensions in reserve was, we
understand, to have been one of our surprises for Germany.</p>
<hr class="tb" />
<div class="figcenter" style="width: 508px;">
<a href="images/101full.jpg">
<img src="images/101.jpg" width="508" height="600" alt="Small Military Enthusiast" />
</a><p><i>Small Military Enthusiast.</i> "<span class="sc">Auntie, do you mind if
I make the Germans win just one battle now and then? They're getting
worn out.</span>"</p></div>
<p><span class="pagenum"><a name="Page_102" id="Page_102">[Pg 102]</a></span></p>
<hr class="tb" />
<p class="ph4">THE MARK OF THE BEAST.</p>
<p class="center">(<i>With acknowledgments to a cartoon by Mr. <span class="sc">Will Dyson</span>.</i>)</p>
<div class="blockquote">
<p>[In a Munich paper Herr <span class="sc">Ganghofer</span> recites the following
remark of the <span class="sc">Kaiser's</span>, whose special journalistic confidant
he is said to be:—"To possess Kultur means to have the deepest
conscientiousness and the highest morality. My Germans possess that."]</p></div>
<div class="poem"><div class="stanza">
<span class="i2">'Tis enough that we know you have said it;<br /></span>
<span class="i4">We feel that the facts correspond<br /></span>
<span class="i2">With your speech as a Person of credit,<br /></span>
<span class="i4">Whose word is as good as his bond;<br /></span>
<span class="i2">Who are we that our critics should quarrel<br /></span>
<span class="i4">With the flattering doctrine you preach—<br /></span>
<span class="i2">That the German, in all that is moral,<br /></span>
<span class="i8">Is an absolute peach?<br /></span>
</div><div class="stanza">
<span class="i2">But the puzzle grows odder and odder:<br /></span>
<span class="i4">If your people are spotless of blame,<br /></span>
<span class="i2">Being perfectly sound cannon-fodder,<br /></span>
<span class="i4">Then whose is the fault and the shame?<br /></span>
<span class="i2">If it's just from a deep sense of duty<br /></span>
<span class="i4">That they prey upon woman and priest,<br /></span>
<span class="i2">And their minds are a model of Beauty,<br /></span>
<span class="i8">Then who is the Beast?<br /></span>
</div><div class="stanza">
<span class="i2">For a Beast is at work in this matter;<br /></span>
<span class="i4">We have seen—and the traces endure—<br /></span>
<span class="i2">The red blood of the innocent spatter<br /></span>
<span class="i4">The print of his horrible spoor;<br /></span>
<span class="i2">On their snouts, like the lovers of Circe—<br /></span>
<span class="i4">Your men that are changed into swine—<br /></span>
<span class="i2">The Mark of the Beast-without-mercy<br /></span>
<span class="i8">Is set for a sign.<br /></span>
</div><div class="stanza">
<span class="i2">You have posed (next to God) as the pillar<br /></span>
<span class="i4">That steadies the fabric of State,<br /></span>
<span class="i2">Whence issues the brave baby-killer<br /></span>
<span class="i4">Supplied with his hymnal of hate;<br /></span>
<span class="i2">Once known for a chivalrous knight, he<br /></span>
<span class="i4">Now hogs with the Gadarene herd;<br /></span>
<span class="i2">Since it can't be the other Almighty,<br /></span>
<span class="i8">How <i>has</i> it occurred?<br /></span>
</div><div class="stanza">
<span class="i2">When at last they begin to be weary<br /></span>
<span class="i4">Of sluicing their virtues in slime,<br /></span>
<span class="i2">And they put the embarrassing query:—<br /></span>
<span class="i4">"Who turned us to brutes of the prime?<br /></span>
<span class="i2">Full of culture and most conscientious,<br /></span>
<span class="i4">Who made us a bestial crew?<br /></span>
<span class="i2">Who pounded the poisons that drench us?"—<br /></span>
<span class="i8">I wouldn't be you.<br /></span>
<span class="i10">O. S.<br /></span>
</div></div>
<hr class="short" />
<p class="ph4">THE PLAINT OF A BRITISH DACHSHUND.</p>
<p><span class="sc">Dear</span> <i>Mr. Punch</i>,—I desire to address you on a painful
subject. Let me state that I am (1) a dachshund of unblemished
character; (2) a British-born subject; (3) a member of a family which,
though originally of foreign extraction, has for several generations
been honourably domiciled in one of the most exclusive and aristocratic
of our English country seats. Imagine then the surprise and indignation
experienced by myself, my wife and our only daughter when, shortly
after the opening of the present unfortunate hostilities between our
country and a certain continental Power, we found the atmosphere of
friendly, nay, affectionate respect with which we had so long been
surrounded becoming gradually superseded by one of suspicion and
animosity.</p>
<p>The ball was started by Macalister, an Aberdeen terrier of unprincipled
character, who has never forgiven me for summarily crushing the
unwelcome advances which he had the bad taste to make last spring to
my daughter. He had had the impertinence to approach me with a large
(and, I confess, a distinctly succulent-looking) object, which he
laid with an oily smile on the ground before my nose. But I had heard
from Gertrude (my wife) of his attentions to our offspring, and I saw
through the ruse.</p>
<p>"If you imagine," I said, "for one moment that this insidious offer
of a stolen bone will induce a gentleman of family to countenance an
engagement between his daughter and an advertisement for Scotch whisky
you are greatly mistaken. Be off with you, and never let me see your
ruffianly whiskers near my basket again!"</p>
<p>Rather severe, no doubt, but when I am deeply moved I seldom mince
matters; in fact, as a Briton, I prefer to hit out straight from the
shoulder. In any case, for the time being it settled Macalister.</p>
<p>I say for the time being. In the autumn he had his revenge. One morning
early in October I was walking down the drive accompanied by a recent
arrival within our circle, a rather brainless St. Bernard (who gave his
name with a lisp as "Bwuno"), when we met my child's rejected suitor.
Since the incident mentioned above I had consistently cut Macalister,
and I passed him now without recognition. No sooner was he by, however,
and at a safe distance, than he deliberately turned and snarled over
his shoulder at me the offensive epithet, "Potsdammer!"</p>
<p>My blood boiled; I longed to bury my teeth in the scoundrel's throat;
but I remembered that Gertrude had once told me that galloping made me
look ridiculous. So I affected not to hear the insult, and proceeded,
outwardly calm, with my morning constitutional. But, for some reason
or other, Bruno's flow of small talk appeared suddenly to dry up, and
once or twice I detected him looking at me curiously out of the corners
of his eyes. Next day, on my calling for him as usual he pleaded a
cold. His manner struck me as odd; still I accepted his excuse. But
when the cold had lasted, without any perceptible loss of appetite, for
a fortnight, and I had seen him meanwhile on two occasions actually
rabbiting (an absurd pastime for a St. Bernard) with Macalister, I
saw what had happened and decided to ask him what he meant by it. He
endeavoured to assume a conciliatory attitude, but the long and short
of it was, he said, that as a Swiss, and therefore a neutral, it was
impossible for him to be too careful, and he feared that my society
might compromise him. I did not argue with him; it would merely have
involved a loss of dignity to do so.</p>
<p>Since that time, though we have endured in silence, the lot of myself
and my family has been a hard one. We have been fed and housed as
usual, it is true, but when one has been accustomed to live on terms
of the most privileged friendship with a household it is galling to
find oneself suddenly treated by every member of it, from the butler
downwards, as a prisoner of war. I am not even allowed now to bite the
postmen; and I used to enjoy them so much, especially the evening one,
who wears quite thin trousers. Our only consolation has been the hope
that our misfortune might be an isolated instance. To-day, however, I
learn that it is not so. I have discovered by my basket (and I have
reason to think that they were conveyed thither by the malignant
Macalister) three humorous (?) sketches depicting members of my race
in situations which I can only describe as ridiculous, and obviously
insinuating that they were to be regarded as aliens.</p>
<p>I appeal to you, Sir, as a lover of justice and animals, to put this
matter right with the public, for the life that a British dachshund has
to lead at the present moment is what is vulgarly known as a dog's life.</p>
<p class="center">
Yours to the bottom biscuit, <span class="sc">Fritz</span>.
</p>
<p><span class="pagenum"><a name="Page_103" id="Page_103">[Pg 103]</a></span></p>
<hr class="short" />
<div class="figcenter" style="width: 611px;">
<a href="images/103full.jpg">
<img src="images/103.jpg" width="611" height="750" alt="THE RIDDLE OF THE SANDS" /></a>
<div class="caption">THE RIDDLE OF THE SANDS.</div>
<p class="center"><span class="sc">Turkish Camel.</span> "WHERE TO?"</p>
<p class="center"><span class="sc">German Officer.</span> "EGYPT."</p>
<p class="center"><span class="sc">Camel.</span> "GUESS AGAIN."</p></div>
<p><span class="pagenum"><a name="Page_104" id="Page_104">[Pg 104]</a></span></p>
<hr class="tb" />
<div class="figcenter" style="width: 750px;">
<a href="images/105full.jpg">
<img src="images/105.jpg" width="750" height="454" alt="THE REFUGEE" /></a>
<div class="caption">THE REFUGEE.</div>
<p>"<span class="sc">Bobby dear, can't you get Marcelle to play with you
sometimes?</span>"</p>
<p>"<span class="sc">I do try, but she doesn't seem to care about it—she's always
knitting. I think, mother, perhaps it might be better if, for the next
war, we had a boy.</span>"</p></div>
<p><span class="pagenum"><a name="Page_105" id="Page_105">[Pg 105]</a></span></p>
<hr class="tb" />
<p class="ph4">HOT WATER.</p>
<p>At the beginning of things I sat outside my tent in the early hours of
the morning while a stalwart warrior poured buckets of cold water down
my spine. I felt heroic.</p>
<p>Towards the end of October I began to dislike my servant; I had a
suspicion he was icing the water. Before November was in I had given up
sitting outside my tent. My bathing I decided (one cold wet morning)
should take place under cover, either at the Golf Club or at some
kindly person's house.</p>
<p>A few days later, not being on duty, I had arranged to dine with the
Fergusons. In the late afternoon I strode into the Golf Club and had a
hot bath. From there I wandered into town, where I met Mrs. Johnston.</p>
<p>"Hello!" she said. "I'm just going home. Won't you come with me?"</p>
<p>Mrs. Johnston is one in a thousand.</p>
<p>"Rather," I agreed. "Forward—by the right."</p>
<p>Tea over, my hostess turned to me brightly. "Now," she said, "I know
what it must be in camp. I'm sure you'd like a nice hot bath," and she
rang the bell.</p>
<p>Somehow I didn't tell her I'd had one at the Club. You might have
done differently perhaps, but—well, the little lady was beaming
hospitality; was it for me to stifle her generous intentions? I thought
not.</p>
<p>I went upstairs and splashed manfully.</p>
<p>For the third time that day I dressed; then I went downstairs and found
Johnston.</p>
<p>"Hello," he said. "Been having a bath? Good!"</p>
<p>I stiffened perceptibly at "good."</p>
<p>We chatted a little while, then I breathed my sincere thanks and left
them.</p>
<p>My arrival at the Fergusons' was rather early, somewhere about
seven-thirty. I was shown into the drawing-room while the maid went to
inform Mrs. Ferguson of my arrival. In two minutes she returned.</p>
<p>"Will you come this way, Sir?" she said.</p>
<p>I went that way.</p>
<p>Ten minutes later I emerged from Ferguson's bath and walked into his
dressing-room. Ferguson had arrived.</p>
<p>"Hello!" he said. "Been having a bath? Good!"</p>
<p>I winced at the word; then I smiled bravely and started to dress—for
the fourth time.</p>
<hr class="short" />
<p>It was eleven o'clock when I got back to camp, and I found to my
surprise that the Mess had been moved from the tent to the new hut.</p>
<p>"Hello!" they said, "how do you like the new quarters?"</p>
<p>I surveyed the bare boards.</p>
<p>"Topping," I replied, "but it's not anywhere near finished."</p>
<p>"No," said the Junior Major, "but the bath's in. Hot water, by Gad! Go
and have a bath."</p>
<p>I looked at him blankly. "I've had three, Sir, to-day."</p>
<p>I might have known it was foolish; the Junior Major is still young.</p>
<p>"It's up to the subalterns," he suggested, "to see he has No. 4."</p>
<p>They saw to it.</p>
<hr class="short" />
<p>"Baron von Bissing, the Governor of Belgium," says <i>The Central News</i>,
"has paid a visit to Turnhout and inspected the German guards along
the Belgo-Dutch frontier." In the whole of our experience we know no
finer example of self-control than our refusal to play with that word
Turnhout.</p>
<p><span class="pagenum"><a name="Page_106" id="Page_106">[Pg 106]</a></span></p>
<hr class="short" />
<p class="ph4">IN QUAINTEST CINEMALAND.</p>
<p>In these troublous times Cinemaland is about the only foreign country
in which it is possible to travel for pleasure. It has occurred to me
that some account of its curious manners and customs may not be without
interest for such readers as are still unacquainted with them.</p>
<p>As Cinemaland contains many departments, each of which has
peculiarities of its own, I cannot attempt more than a general
description.</p>
<div class="figright" style="width: 411px;">
<a href="images/106full.jpg">
<img src="images/106.jpg" width="411" height="500" alt="The Blockade" /></a>
<div class="caption"><span class="sc">The Blockade. A fair warning.</span></div>
</div>
<p>The chief national industry is the chase of fugitives. In some
departments this is done on horseback, with a considerable and rather
aimless expenditure of ammunition; in others by motor car, or along the
roofs of railway carriages. It seems a healthy pursuit and provides all
concerned with exercise and excitement. The women are, almost without
exception, young and extremely prepossessing. Nature has endowed them,
among other personal advantages, with superb teeth, of which they make
a pardonably ostentatious display on the slightest provocation. They
are all magnificent horsewomen and fearless swimmers, and they do not
in the least mind spoiling their clothes.</p>
<p>In their domestic circles, however, they show a feminine and clinging
disposition, with a marked tendency to fall in love at first sight with
any undesirable stranger.</p>
<p>The principal occupation of the children is reconciling estranged
parents by contracting serious illnesses or getting run over.
The latter is even easier to manage in Cinemaland than in any
London thoroughfare. I have seldom, if ever, seen an aged Cinemian
grandparent, a long-lost wife, or a strayed child try to cross the
emptiest street without being immediately bowled over by a motor-car.
The mere wind of it has the strange potency not only of knocking down a
pedestrian, but inflicting the gravest internal injuries. Fortunately,
Cinemaland is a country rich in coincidences, so the car is invariably
occupied by the very person who has been vainly seeking the sufferer
for years. This of course is some compensation, but, all the same, it
is hardly the ideal method of running across people one is anxious to
meet.</p>
<p>The victims are always removed to the nearest hospital, but, if I may
judge from what I have seen of their wards, I should say that medical
science in Cinemaland is still in its infancy, and it has never
surprised me that so many patients die soon after admission.</p>
<p>But then Science of any kind seems to be a dangerous and unprofitable
occupation there. The inventor, designer, or discoverer of anything
is simply asking for trouble. If he doesn't blow himself up in his
laboratory and get blinded for life, some envious rival is certain to
undertake this for him. Or else a vague villain will steal his formula
or plans and sell them to a Foreign Power with Dundreary whiskers. And
the extraordinary part of it is that no Cinemian has ever invented
anything yet of which the secret could possibly be worth more than
twopence. I fancy the stealing must be done from sheer wanton devilry.</p>
<p>Crime in Cinemaland is invariably detected sooner or later, though I
doubt if it would be but for a careless practice among criminals there
of carrying in their breastpockets the document that proves their
guilt. They seem to have a superstitious idea that to destroy it would
bring them bad luck.</p>
<p>The exterior of a private mansion in a fashionable Cinemian suburb is
stately and imposing, but the interior is generally disappointing,
the rooms being small and overcrowded with furniture that is showy
without being distinguished. In some houses the owners appear to have a
taste for collecting antiques and to have been grossly imposed upon by
dealers.</p>
<p>It is usual for young couples with a very moderate income to keep
not only a smart parlourmaid but a butler as well. The manner of all
Cinemian domestics is one of exaggerated deference; an ordinary English
employer would be painfully embarrassed if his servants bowed to him so
low and so often, but they appear to like it in Cinemaland.</p>
<p>Social etiquette there has exigencies that are all its own. For
example, a guest at an evening party who happens to lose a brooch or
necklace is expected at once to stop the festivities by complaining
to her hostess and insisting on a constable being called in to search
everybody present. It might be thought that Cinemian Society would have
learnt by this time that the person in whose possession the missing
article is discovered is absolutely sure to be innocent. But the
supposed culprit is always hauled off (with quite unnecessary violence)
to prison, amidst the scorn and reprobation of the hostess and her
other guests. It is true they make the handsomest amends afterwards,
which are gratefully accepted, but in any other country the hostess's
next invitation to any social function would be met with the plea of
a previous engagement. If these amiable and impulsive people <i>have</i> a
failing, I should say it was a readiness to believe the worst of one
another on evidence which would not hang an earwig.</p>
<p>They are indefatigable letter-writers, but, after having had the
privilege of inspecting numerous examples of their correspondence, I
am compelled to own that, while their penmanship is bold and legible,
their epistolary style is apt to be a trifle crude.</p>
<p>The clergy of Cinemaland all wear short side whiskers and are a
despised and servile class who appear to derive most of their
professional income from marrying runaway couples in back parlours.</p>
<p>In certain departments it is a frequent practice to dress up in Federal
and Confederate uniforms and engage in desperate conflict. I have
witnessed battles there with over a hundred combatants on each side.
There was a profusion of flags and white smoke on these occasions, but,
so far as I was able to observe, no blood was actually shed.</p>
<p>There is another department which is inhabited by a<span class="pagenum"><a name="Page_107" id="Page_107">[Pg 107]</a></span> singularly
high-strung, not to say jerky, race, the women especially betraying
their emotions with a primitive absence of self-control. There, the
pleasure of the cause has become a delirious orgy, though much valuable
time is lost both by pursuers and pursued, owing to an inveterate habit
of stopping and leaping high at intervals. Squinting is a not uncommon
affliction, as is also abnormal stoutness, the latter, however, being
always combined with a surprising agility. In personal encounters,
which are by no means uncommon, it is considered not only legitimate
but laudable to kick the adversary whenever he turns his back, and also
to spring at him, encircle his waist with your legs, and bite his ear.
The local police are all either overgrown or undersized, and have been
carefully trained to fall over one another at about every five yards.
As guardians of the peace, however, I prefer our own force.</p>
<p>I could not have written even so brief an account as this unless I had
paid many visits to Cinemaland. If I am spared I fully expect to pay
many more. The truth is that I cannot keep away from the country. Why,
I can't explain, but I fancy it is because it is so absolutely unlike
any other country with which I happen to be familiar.</p>
<p class="author">
F. A.
</p>
<hr class="tb" />
<div class="figcenter" style="width: 800px;">
<a href="images/107full.jpg">
<img src="images/107.jpg" width="800" height="549" alt="The one seated" /></a>
<p><i>The one seated</i> (<i>reading newspaper of January
29th</i>). "'20,000 GERMANS FALLEN IN ATTEMPT AT COUP-DE-MAIN.' <span class="sc">Can
yer see it?</span> C-O-U-P., D-E., M-A-I-N. <span class="sc">Stick a Union Jack in
there.</span>"</p></div>
<hr class="tb" />
<div class="blockquote">
<p>"The practice of compulsorily enrolling men for defence against
invasion can be traced from before the time of Alfred the Great, when
every man between 18 and 60 had to serve right up to the time of the
Napoleonic wars."—<i>Saturday Review.</i></p></div>
<p>It was found, however, that men who had enlisted in <span class="sc">Alfred the
Great's</span> time at the age of sixty were of little real use in the
Napoleonic wars.</p>
<hr class="short" />
<p class="ph4">FLEET VISIONS SEEN THROUGH GERMAN EYES.</p>
<div class="blockquote">
<p>[A number of curious facts about the British Army, lately gathered
from German sources, may be supplemented by some further information
of interest bearing on our Fleet.]</p></div>
<p>The facts may be obscured for purposes of recruiting, but it remains
true that British seamen are no better than serfs. Their officers have
the most complete proprietorship in their persons and can do with
them what they like, as in the case of the English captain who had a
favourite shark, which followed his ship, and to which he threw an A.B.
each morning. That their slavery is acknowledged by the men is shown by
their custom of referring to the Captain as "The Owner."</p>
<hr class="short" />
<p>The savagery of the British Navy has passed into a by-word, and the
bluejackets popularly go by the name of Jack Tartars.</p>
<hr class="short" />
<p>It is all very well for America to protest her neutrality to Berlin,
but how can we ignore the fact that President <span class="sc">Wilson</span> actually
has a seat on the board of the British Admiralty—where he is known
as "Tug" <span class="sc">Wilson</span>. He is even the author of a work aimed
deliberately at us, and entitled <i>Der Tug</i>.</p>
<hr class="short" />
<p>The superstitions of ignorant British seamen, notably the Horse
Marines, whose credulity has no parallel, is extra-ordinary. Mascots
are carried on all ships. For instance, no ship's carpenter will ever
go to sea without a walrus.</p>
<p><span class="pagenum"><a name="Page_108" id="Page_108">[Pg 108]</a></span></p>
<hr class="tb" />
<p class="ph4">SELECT CONVERSATIONS.</p>
<p class="center">(<i>At about three o'clock in the morning.</i>)</p>
<p class="center"><span class="sc">At the War Office.</span></p>
<p><i>Myself.</i> I want to see Lord <span class="sc">Kitchener</span>, please.</p>
<p><i>Policeman.</i> Quite impossible, Sir.</p>
<p><i>Myself</i> (<i>coldly handing card</i>). I don't think you realise who I am.</p>
<p><i>Policeman</i> (<i>much impressed</i>). This way, Sir.</p>
<div class="blockquote">
<p>[<i>I ascend the secret staircase, pat the bloodhounds chained outside
the sanctum, and enter.</i></p></div>
<p><i>Kitchener</i> (<i>sternly</i>). Good morning; what can I do for you?</p>
<p><i>Myself</i> (<i>simply</i>). I have come to offer my services to the War Office.</p>
<p><i>Kitchener.</i> Have you had any previous military experience?</p>
<p><i>Myself.</i> None at all, Sir.</p>
<p><i>Kitchener</i> (<i>warmly</i>). Excellent. The very man we want. You will bring
an absolutely fresh and unbiassed mind to the problem before us. Sit
down. (<i>I sit down.</i>) You have a plan for defeating the Germans? Quite
so. Now—er—roughly, what would your idea be?</p>
<p><i>Myself</i> (<i>waving arm</i>). Roughly, Sir, a broad sweeping movement.</p>
<p><i>Kitchener</i> (<i>replacing ink-pot and getting to work with the
blotting-paper</i>). Excellent.</p>
<p><i>Myself.</i> The details I should work out later. I think perhaps I had
better explain them personally to Sir <span class="sc">John French</span> and General
<span class="sc">Joffre</span>.</p>
<p><i>Kitchener.</i> I agree. You will be attached to Sir <span class="sc">John's</span>
Staff, with the rank of Major. I shall require you to leave for the
Front to-night. Good day, Major.</p>
<div class="blockquote">
<p>[<i>We salute each other, and the scene changes.</i></p></div>
<p class="center"><span class="sc">At General Headquarters.</span></p>
<p><i>French.</i> Ah, how do you do, Major? We have been waiting for you.</p>
<p><i>Myself.</i> How do you do, Sir? (<i>To</i> <span class="sc">Joffre</span>, <i>slowly</i>) <i>Comment
vous portéz-vous?</i></p>
<p><i>Joffre.</i> Thank you; I speak English.</p>
<p><i>Myself</i> (<i>a little disappointed</i>). Good.</p>
<p><i>French.</i> Now then, Major, let us hear your plan.</p>
<p><i>Myself.</i> Well, roughly it is a broad sweeping move——I <i>beg</i> your
pardon, Sir!</p>
<p><i>Joffre</i> (<i>with native politeness</i>). Not at all, Monsieur.</p>
<p><i>Myself</i> (<i>stepping back so as to have more room</i>)—a broad sweeping
movement. More particularly my idea is——</p>
<p>[It is a curious thing, but I can never remember the rest of this
speech when I wake up. I know it disclosed a very masterly piece of
tactics ... the region of the Argonne ... a <i>point d'appui</i>.... No, it
has gone again. But I fancy the word "wedge" came in somewhere.]</p>
<p><i>French.</i> Marvellous!</p>
<p><i>Joffre.</i> <i>Magnifique!</i></p>
<p><i>Myself</i> (<i>modestly</i>). Of course it's only an idea I jotted down on the
boat, but I think there's something in it.</p>
<p><i>French.</i> My dear Major, you have saved Europe.</p>
<p><i>Joffre</i> (<i>unpinning medal from his coat</i>). In the name of France I
give you this. But you have a medal already, Monsieur?</p>
<p><i>Myself</i> (<i>proudly</i>). My special constable's badge, General. I shall be
proud to see the other alongside it.</p>
<p class="center"><i>The scene fades.</i></p>
<div class="blockquote">
<p>[I can only suppose that at this moment I am moved by the desire to
save useless bloodshed, for I next find myself with the enemy.]</p></div>
<p class="center"><span class="sc">At Potsdam.</span></p>
<p><i>Kaiser</i> (<i>eagerly</i>). Ah, my good <span class="sc">Tirpitz</span>, what news of our
blockade?</p>
<p><i>Myself</i> (<i>removing whiskers</i>). No, <span class="sc">William</span>, not
<span class="sc">Tirpitz!</span></p>
<p><i>Kaiser.</i> An Englishman!</p>
<p><i>Myself.</i> An Englishman—and come to beg you to give up the struggle.</p>
<p><i>Kaiser.</i> Never, while there is breath in man or horse!</p>
<p><i>Myself.</i> One moment. Let me tell you what is about to happen. On my
advice the Allies are making a broad swee—— Put back your sword,
Sire. I am not going to strike you—a broad sweeping movement through
Germany.</p>
<p><i>Kaiser</i> (<i>going pale</i>). We are undone. It is the end of all. And this
was <i>your</i> idea?</p>
<p><i>Myself.</i> My own, your Majesty.</p>
<p><i>Kaiser</i> (<i>eagerly</i>). Would an Iron Cross and a Barony tempt you to
join us? Only a brain like yours could defeat such a movement.</p>
<p><i>Myself</i> (<i>with dignity</i>). As a Major and a gentleman——</p>
<p><i>Kaiser.</i> Enough. I feared it was useless. <i>(Gloomily)</i> We surrender.</p>
<p class="center"><i>The scene closes.</i></p>
<div class="blockquote">
<p>[The final scene is not so clear in my memory that I can place it with
confidence upon paper. But the idea of it is this.]</p></div>
<p class="center"><span class="sc">At —— Palace.</span></p>
<p><i>A Certain Person.</i> Your country can never sufficiently reward you,
Major, but we must do what we can. I confer on you the V.C., the
D.S.O., the M.V.O., the P.T.O. and the P. and O. The payment of a
special grant of £5,000 a year for life will be proposed in the House
to-morrow.</p>
<p><i>Myself.</i> Thank you, Sir. As for the grant, I shall value it more for
the spirit which prompted it than for its actual—— Did you say <i>five</i>
thousand, Sir?</p>
<div class="blockquote">
<p>[At this point I realise with horror that I have only a very short vest
on, and with a great effort I wake.... The papers seem very dull at
breakfast.]</p></div>
<p class="author">
A. A. M.
</p>
<hr class="short" />
<p class="ph4">THE SOLDIER'S ENGLAND.</p>
<div class="poem"><div class="stanza">
<span class="i4">My England was a draper's shop,<br /></span>
<span class="i6">And seemed to be the place to fit<br /></span>
<span class="i4">My size of man; and I'd to stop<br /></span>
<span class="i6">And make believe I fancied it—<br /></span>
<span class="i2">That and a yearly glimpse of mountain blue,<br /></span>
<span class="i10">A book or two.<br /></span>
</div><div class="stanza">
<span class="i4">A bigger England stirs afloat.<br /></span>
<span class="i6">I see it well in one who's come<br /></span>
<span class="i4">From where he left his home and boat<br /></span>
<span class="i6">By Cornish coasts, whose rollers drum<br /></span>
<span class="i2">Their English music on an English shore<br /></span>
<span class="i10">Right at his door.<br /></span>
</div><div class="stanza">
<span class="i4">And one who's left the North a spell<br /></span>
<span class="i6">Has found an England he can love,<br /></span>
<span class="i4">Hacking out coal. He's learnt her well<br /></span>
<span class="i6">Though mines are narrow and, above,<br /></span>
<span class="i2">The dingy houses set in dreary rows,<br /></span>
<span class="i10">Seem all he knows.<br /></span>
</div><div class="stanza">
<span class="i4">The one of us who's travelled most<br /></span>
<span class="i6">Says England, stretching far beyond<br /></span>
<span class="i4">Her narrow borders, means a host<br /></span>
<span class="i6">Of countries where her word's her bond<br /></span>
<span class="i2">Because she's steadfast, everywhere the same,<br /></span>
<span class="i10">To play the game.<br /></span>
</div><div class="stanza">
<span class="i4">Our college chum (my mate these days)<br /></span>
<span class="i6">Thinks England is a garden where<br /></span>
<span class="i4">There blooms in English speech and ways,<br /></span>
<span class="i6">Nurtured in faith and thought we share,<br /></span>
<span class="i2">A fellowship of pride we make our own,<br /></span>
<span class="i10">And ours alone.<br /></span>
</div><div class="stanza">
<span class="i4">And England's all we say, but framed<br /></span>
<span class="i6">Too big for shallow words to hold.<br /></span>
<span class="i4">We tell our bit and halt, ashamed,<br /></span>
<span class="i6">Feeling the things that can't be told;<br /></span>
<span class="i2">And so we're one and all in camp to-night,<br /></span>
<span class="i10">And come to fight.<br /></span>
</div></div>
<hr class="short" />
<div class="blockquote">
<p>"No judgment of recent years has aroused more widespread interest
than that of Mr. Justice Bargrave Deane, in which he decided that the
Slingsby baby was the son of his mother."—<i>Evening News.</i></p></div>
<p>Wonderful men our judges.</p>
<p><span class="pagenum"><a name="Page_109" id="Page_109">[Pg 109]</a></span></p>
<hr class="tb" />
<div class="figcenter" style="width: 750px;">
<a href="images/109full.jpg">
<img src="images/109.jpg" width="750" height="488" alt="Doctor" /></a>
<p><i>Doctor.</i> "<span class="sc">You'll be all right now, and I have much
pleasure in returning you the two sovereigns which I found shot into
you with the purse.</span>"</p>
<p><i>Sergeant.</i> "<span class="sc">Thank you, Sir; I don't call half a quid dear for
doin' that job.</span>"</p>
<p><i>Doctor.</i> "<span class="sc">I don't follow you.</span>"</p>
<p><i>Sergeant.</i> "<span class="sc">Well, I had two-pound-ten in that purse.</span>"</p></div>
<hr class="tb" />
<p class="ph4">HOW TO DEAL WITH SUBMARINES.</p>
<div class="blockquote">
<p>["<i>The Syren and Shipping</i> offers £500 to the captain, officers and
crew of the first British merchant vessel which succeeds in sinking a
German submarine."—<i>The Times.</i>]</p></div>
<p>In order to assist captains of merchant ships to deal with raiding
submarines, a few suggestions and comments, which it is hoped will be
helpful, are offered by our Naval Expert.</p>
<p>In the absence of a 4·7 naval gun, a provision suggested as useful by
a writer in <i>The Times</i>, any 13-inch shells that you happen to have on
board might be hoisted over the side, disguised as bunches of bananas,
and dropped on to the offending submarine. If this does not sink her at
once, additional bunches should be dropped.</p>
<p>But before disposing of your shells be sure that your submarine is
close alongside. In case she should hold off, let the first mate beckon
to her, in a manner as nonchalant as possible, to come closer.</p>
<p>When the enemy boards your ship, the captain should endeavour to
interest the boarding party with the latest war news from German
bulletins, whilst the bo'sun, the second steward and the stewardess,
with the aid of peashooters, pour liquid explosive down the submarine's
periscope.</p>
<p>If you are fortunate enough to have on board one of those trained
sea lions which have been showing for some years at the music-halls,
you need not trouble to practise the subterfuges given above. On the
enemy's submarine making her appearance on the starboard side you
should lower your sea lion over the port side, preferably near the
stern, having previously attached to it a bomb connected with wires to
a battery. When the sea lion is close to the submarine just press the
button. Possibly you will lose your pet, but the general result should
be satisfactory.</p>
<p>Owing to unavoidable circumstances you may not be able to put into
practice any of these hints. If that be so, when the enemy comes
aboard, work up a heated discussion on the origin of the War. If
skilfully managed, you should draw into the discussion the entire
company of the submarine, with the result that you will make time and
possibly be got out of your difficulty by one of our patrol ships.</p>
<p>Should all and every one of these expedients be useless, as a forlorn
hope you should read aloud the appropriate clauses of the Hague
Convention, and at the same time take the names and addresses of the
boarding party for future reference.</p>
<p>If you have an amateur photographer aboard, let him get going. The
payment made by illustrated papers for pictures that reproduce the
sinking of your ship will probably exceed the value of the ship, so
that in any case your owners will not lose by the deal.</p>
<p>But it is always best, where possible, to sink the submarine.</p>
<hr class="short" />
<p>From a letter in <i>The Liverpool Echo</i>:—</p>
<div class="blockquote">
<p>"At a time like this we must be prepared to have our prejudices
shattered. When the whole world has been turned upside down, is it
fair that women should be left standing still?"</p></div>
<p>It is a delicate question, and the women must be left to take up their
own position in the matter.</p>
<p><span class="pagenum"><a name="Page_110" id="Page_110">[Pg 110]</a></span></p>
<hr class="tb" />
<div class="figcenter" style="width: 750px;">
<a href="images/110full.jpg">
<img src="images/110.jpg" width="750" height="493" alt="Village Constable" /></a>
<p><i>Village Constable</i> (<i>to the Vicar, who has been
hurrying to fetch fire engine</i>). "<span class="sc">So your 'ouse is afire, is it?
Ah! I've bin a-watchin' that light. Didn't expect to run into <i>me</i>, did
you? 'Ow'm I to know you bain't signallin' to Germany?</span>"</p></div>
<hr class="tb" />
<p class="ph4">JOHNSON.</p>
<div class="poem"><div class="stanza">
<span class="i2">When the task of training scholars Johnson manfully essayed<br /></span>
<span class="i2">At a school whose Eton collars were the finest ever made,<br /></span>
<span class="i2">It was largely lack of dollars drove him to the teaching trade.<br /></span>
</div><div class="stanza">
<span class="i2">Nature meant, had Fate allowed, him to command a t.b.d.,<br /></span>
<span class="i2">Both his parents gladly vowed him to the service of the sea,<br /></span>
<span class="i2">But the Navy doctors ploughed him for some <i>itis</i> of the knee.<br /></span>
</div><div class="stanza">
<span class="i2">Yet, in spite of this embargo, he had spent each Oxford vac.<br /></span>
<span class="i2">In a tramp as supercargo or on board a fishing-smack,<br /></span>
<span class="i2">Till of sailors' lore and <i>argot</i> he was full as he could pack.<br /></span>
</div><div class="stanza">
<span class="i2">In the sphere of gerund-grinding Johnson wasn't a success;<br /></span>
<span class="i2">Boys are overprone to finding fault with masters who transgress<br /></span>
<span class="i2">Rules which they consider binding in regard to form and dress.<br /></span>
</div><div class="stanza">
<span class="i2">Johnson's taste was always slightly <i>outré</i> in his ties and caps;<br /></span>
<span class="i2">Furthermore he never rightly saw the fun of booby traps;<br /></span>
<span class="i2">And he clouted, none too lightly, boys who larked with watertaps.<br /></span>
</div><div class="stanza">
<span class="i2">Some considered him half-witted, or at best a harmless freak;<br /></span>
<span class="i2">Some reluctantly admitted that he knew a lot of Greek;<br /></span>
<span class="i2">All agreed he was unfitted for the calling of a "beak."<br /></span>
</div><div class="stanza">
<span class="i2">So, reluctantly returning to their mid-autumnal grind,<br /></span>
<span class="i2">Nearly all the boys, on learning Mr. Johnson had resigned,<br /></span>
<span class="i2">Showed the usual undiscerning acquiescence of their kind.<br /></span>
</div><div class="stanza">
<span class="i2">Thus he passed unmourned, unheeded, by nine boys in ev'ry ten,<br /></span>
<span class="i2">And as week to week succeeded, bringing Christmas near again,<br /></span>
<span class="i2">Quite a miracle was needed to recall him to their ken.<br /></span>
</div><div class="stanza">
<span class="i2">Deeds that merit lasting glory almost daily leap to light;<br /></span>
<span class="i2">But one morning brought a story which was "excellently bright,"<br /></span>
<span class="i2">And the Head, <i>rotunda ore</i>, read it out in Hall that night.<br /></span>
</div><div class="stanza">
<span class="i2">'Twas a tale of nerve unshrinking—of a "sweeper" off the Tyne,<br /></span>
<span class="i2">Which had rescued from a sinking trawler, shattered by a mine,<br /></span>
<span class="i2">Though a submarine was slinking in her wake, a crew of nine.<br /></span>
</div><div class="stanza">
<span class="i2">Well, you won't be slow in guessing at the gallant skipper's name,<br /></span>
<span class="i2">Or from whom the most caressing message to the hero came—<br /></span>
<span class="i2">Boys are generous in redressing wrongs for which they are to blame.<br /></span>
</div><div class="stanza">
<span class="i2">Johnson still continues "sweeping," in the best of trim and cheer,<br /></span>
<span class="i2">As indifferent to reaping laurels as immune from fear,<br /></span>
<span class="i2">While five hundred boys are keeping friendly watch on his career.<br /></span>
</div></div>
<p><span class="pagenum"><a name="Page_111" id="Page_111">[Pg 111]</a></span></p>
<hr class="tb" />
<div class="figcenter" style="width: 618px;">
<a href="images/111full.jpg">
<img src="images/111.jpg" width="618" height="800" alt="THE OUTCAST" /></a>
<div class="caption">THE OUTCAST.</div>
<p class="center">A PLACE IN THE SHADOW.</p></div>
<p><span class="pagenum"><a name="Page_112" id="Page_112">[Pg 112]</a><br /><a name="Page_113" id="Page_113">[Pg 113]</a></span></p>
<hr class="tb" />
<p class="ph4">ESSENCE OF PARLIAMENT.</p>
<p class="center">(<span class="sc">Extracted from the Diary of Toby, M.P.</span>)</p>
<p><i>House of Commons, Tuesday, 2nd February.</i>—First business on
resumption of sittings after Recess was issue of writ for election of
Member for Shipley Division of Yorkshire to fill the seat of <span class="sc">Percy
Illingworth</span>, whose place on Treasury Bench and in Whips' Room will
know him no more.</p>
<p>Herein a tragedy notable even amid absorbing interest of the War. When
in last week of November House adjourned for recess, the <span class="sc">Chief
Liberal Whip</span> was in what seemed to be perfection of health. A
little tired perhaps with exhausting labour of prolonged Session, but
cheerily looking forward to interval of comparative rest. Physically
and intellectually in the prime of life, he had happy constitutional
turn of making the best of everything. A good sportsman, a famed
footballer, healthy in mind and body, he habitually counteracted
influence of sedentary life by outdoor exercise. If one had cast an eye
round Benches on both sides and estimated which was the most likely
man for whose county or borough a writ would, on reassembling of
Parliament, be moved to fill vacancy created by his death, one would
last of all have thought of <span class="sc">Percy Illingworth</span>.</p>
<p>Two years ago selection by <span class="sc">Prime Minister</span> of a young,
comparatively unknown, inexperienced man to fill important post of
Chief Ministerial Whip was regarded with some surprise. That shrewd
judge of character and capacity as usual justified by the event,
<span class="sc">Illingworth</span> speedily made his mark. Courteous in manner, frank
in speech, swift and capable in control of circumstance, he gained,
and in increasing measure maintained, that confidence and personal
popularity indispensable to the successful Whip.</p>
<p>Pleasant for his many friends to think that he lived long enough
to have conferred upon him a Privy Councillorship—a simple title,
but good enough for <span class="sc">Peel</span> and <span class="sc">Gladstone</span>, and for
<span class="sc">Dizzy</span> throughout the plenitude of his prime.</p>
<p>It was not without emotion that <span class="sc">Gulland</span>, promoted to the Chair
in the Whips' Room vacated by his esteemed Leader, moved the writ. He
was comforted and encouraged by hearty cheers, not wholly confined to
Ministerial side, approving the <span class="sc">Premier's</span> choice.</p>
<div class="figleft" style="width: 368px;">
<a href="images/113afull.jpg">
<img src="images/113a.jpg" width="368" height="400" alt="Promoted to the Chair" /></a>
<p class="center"><span class="sc">Promoted to the Chair in the Whips' Room.</span></p>
<p class="center">(<span class="sc">Mr. J. W. Gulland.</span>)</p></div>
<p>Full but not crowded attendance such as usually foregathers on
opening days of the school at Westminster. Khaki-clad warriors moving
about House and Lobbies with martial step suggested explanation of
falling-off. Two hundred Members are at the Front on active service, a
score or more engaged in civilian service in connection with the War.</p>
<p>Business brief, curiously lifeless. Only one Question on Printed Paper
where in ordinary times not unusual to find two hundred. On motion
for adjournment, made within twenty minutes of <span class="sc">Speaker's</span>
taking the Chair, number of desultory topics were introduced by way of
cross-examination of Ministers. No disposition shown to pursue them in
controversial mood. At 4.30 House adjourned.</p>
<p><i>Business done.</i>—Both Houses reassembled after Winter Recess. In
Commons <span class="sc">Premier</span> announced that Government will take the whole
time for official business. Private Members and their Bills thus
shunted, it will not be necessary to meet on Fridays.</p>
<p><i>Wednesday.</i>—Gloom that lies like a pall over House momentarily lifted
by unexpected agency. As at the circus when things are drifting into
dullness the Clown suddenly enters, displacing monotony by merriment,
so when Questions about enemy alien and the sacredness of the rights of
private Members had droned along for some time Mr. <span class="sc">Ginnell</span>,
who classifies himself as "an Independent Nationalist," presented
himself from below Gangway. First distinguished himself above common
horde on occasion of election of <span class="sc">Speaker</span> at opening sitting of
present Parliament. The <span class="sc">Speaker</span> being as yet non-existent, the
authority of the Chair undelegated, he had House at his mercy. Might
talk as long as he pleased, say what he thought proper, with none to
call him to order. Used opportunity to make violent personal attack on
<span class="sc">Speaker-designate</span>.</p>
<div class="figright" style="width: 292px;">
<a href="images/113bfull.jpg">
<img src="images/113b.jpg" width="292" height="400" alt="On the old tack" /></a>
<p class="center"><span class="sc">On the old tack.</span></p>
<p class="center">(<span class="sc">Mr. Ginnell.</span>)</p></div>
<p>Up again now on same tack. Appears that yesterday he handed in at
the Table two Bills he proposed to carry through. No record of the
procedure on to-day's Paper. Mr. <span class="sc">Ginnell</span> smelt a rat. He
"saw it moving in the air" in person of the <span class="sc">Speaker</span>, who
was "perverting against the House powers conferred on him for the
maintenance of its functions and its privileges." Mr. <span class="sc">Ginnell</span>
not sort of man to stand this. Proposed to indict <span class="sc">Speaker</span> for
misconduct. But not disposed to be unreasonable; always ready to oblige.</p>
<p>"If," he said, addressing the <span class="sc">Speaker</span>, "I should be out of
order now, may I to-morrow call attention to your conduct in the Chair?"</p>
<p><span class="sc">Speaker</span> cautiously replied that before ruling on the point he
would like to see the terms of motion put down on the Paper.</p>
<p>Thereupon Mr. <span class="sc">Ginnell</span> proceeded to read a few remarks not
entirely complimentary to the <span class="sc">Speaker</span>, which for greater
accuracy he had written out on what <span class="sc">Prince Arthur</span> once alluded
to as a sheet of notepaper. Holding this firmly with both hands, lest
some myrmidon of the Chair should snatch it from him, he emphasised
his points by bobbing it up and down between his chin and his knee.
Whilst primarily denunciatory of the <span class="sc">Speaker</span> he had a word to
say in reproof of <span class="sc">Prime Minister</span>, whose concession to private
Members of opportunity for an hour's talk on motion for adjournment
he described as being "like cutting off a private Member's head, then
clipping off a portion of his ear and throwing it to his relatives."</p>
<p><i>Business done.</i>—Without division House consented that Government
business shall have precedence on every day the House sits.
<span class="sc">Premier</span> in exquisite phrases lamented the early cutting-<span class="pagenum"><a name="Page_114" id="Page_114">[Pg 114]</a></span>off
of <span class="sc">Percy Illingworth</span>, of whom he said: "No man had imbibed
and assimilated with more zest and sympathy that strange, indefinable,
almost impalpable atmosphere compounded of old traditions and of
modern influences which preserves, as we all of us think, the unique
but indestructible personality of the most ancient of the deliberative
assemblies of the world."</p>
<p>Impossible more fully and accurately to describe that particular
quality of the House of Commons which every one who intimately knows it
feels but would hesitate to attempt to define.</p>
<p><i>Thursday.</i>—Noble Lords are studiously and successfully disposed to
conceal passing emotion. Masters of themselves though China fall,
even should it drag down with it Japan and Korea. Return of Lord
<span class="sc">Lansdowne</span> after prolonged bout of illness, an event so popular
that it broke through this iron shield of hereditary conventionality.
His reappearance welcomed from both sides with hearty cheer, in volume
more nearly approaching House of Commons habit than what is familiar in
the Lords.</p>
<p><span class="sc">Leader of Opposition</span> is unquestionably one of the most highly
esteemed among Peers. There have been crises in history of present
Parliament when, through attitude taken by extreme partisans, he has
found himself in difficult situation. Invariably circumvented it.
Without making pretension to be a Parliamentary orator—pretension of
any kind is foreign to his nature—he has the gift of saying the right
thing in appropriate words at the proper moment. Looks a little worn
down with long seclusion in sick chamber. But, as the House noticed
with satisfaction gracefully reflected by Lord <span class="sc">Crewe</span>, "is
unimpaired in his power of Parliamentary expression."</p>
<p>This afternoon, to debate on Lord <span class="sc">Parmoor's</span> Bill amending
Defence of Realm Act he contributed a weighty speech instinct with
sound constitutional principles.</p>
<p><i>Business done.</i>—In Commons <span class="sc">McKenna</span> found opportunity of
refuting by statement of simple facts circumstantial fables about Home
Office patronage of ex-German waiters. Supplementary Estimates for
Civil Service voted. House counted out at 5.40. Adjourned till Monday.</p>
<hr class="tb" />
<div class="figcenter" style="width: 800px;">
<a href="images/114full.jpg">
<img src="images/114.jpg" width="800" height="530" alt="PEOPLE WHO OUGHT TO BE INTERNED" />
</a><div class="caption">PEOPLE WHO OUGHT TO BE INTERNED.</div>
<p>"<span class="sc">I might let Harold go to the front if I thought it really
necessary. But there are so many boys who are more used to roughing.
You see, Harold has been so very carefully brought up.</span>"</p></div>
<hr class="tb" />
<p class="ph4">ST. VALENTINE'S DAY, 1915.</p>
<p class="center"><i>A Missive from the Front.</i></p>
<div class="poem"><div class="stanza">
<span class="i2">Ere the first grey dawn has banished<br /></span>
<span class="i4">Restless night and her alarms,<br /></span>
<span class="i2">When the sleeper's snores have vanished<br /></span>
<span class="i4">On the order "Stand to arms!"<br /></span>
<span class="i2">When the sky is bleak and dreary<br /></span>
<span class="i4">And the rain is chill and thin,<br /></span>
<span class="i2">Be I ne'er so damp and weary,<br /></span>
<span class="i4">Yet my thoughts on You I pin.<br /></span>
</div><div class="stanza">
<span class="i2">When the bullets fly unheeded<br /></span>
<span class="i4">O'er the meagre parapet,<br /></span>
<span class="i2">As I pace my ditch impeded<br /></span>
<span class="i4">By the squelching mud and wet;<br /></span>
<span class="i2">When I eat my Army ration<br /></span>
<span class="i4">With my fingers caked in clay—<br /></span>
<span class="i2">You can stake your total cash on<br /></span>
<span class="i4">Me remembering You this day.<br /></span>
</div><div class="stanza">
<span class="i2">Though the glittering knight whose charger<br /></span>
<span class="i4">Bore him on his lady's quest<br /></span>
<span class="i2">With an infinitely larger<br /></span>
<span class="i4">Share of warfare's pomp was blest,<br /></span>
<span class="i2">Yet he offered love no higher,<br /></span>
<span class="i4">No more difficult to quench,<br /></span>
<span class="i2">Than this filthy occupier<br /></span>
<span class="i4">Of an unromantic trench.<br /></span>
</div></div>
<p><span class="pagenum"><a name="Page_115" id="Page_115">[Pg 115]</a></span></p>
<hr class="tb" />
<div class="figcenter" style="width: 750px;">
<a href="images/115full.jpg">
<img src="images/115.jpg" width="750" height="482" alt="Recruit" /></a>
<p><i>Recruit</i> (<i>who had given his age as 33 on enlistment</i>).
"<span class="sc">Did you 'ear that? Told me my bridle wasn't put on right! Bless
'is bloomin' innocence! And me bin in a racin' stable for the last
five-and-thirty year!</span>"</p></div>
<hr class="tb" />
<p class="ph4">A TERRITORIAL IN INDIA.</p>
<p class="center">IV.</p>
<p><span class="sc">My dear</span> <i>Mr. Punch</i>,—In case you formed any mental pictures
of my first Christmas as a Territorial in India, let me hasten to
assure you that every single one of them was wrong. I neither took
part in the uproarious festivities of the Barracks nor shared the more
dignified rejoicings of the Staff Office in which I am condemned for a
time to waste my military talents. An unexpected five days' holiday,
and a still more unexpected windfall of Rs. 4 as a Christmas Box
(fabulous gift for an impecunious private) enabled me to pay a visit
to some relatives, who live at, well ——. One has to be careful. The
Germans are getting desperate, and they would give worlds to know
exactly where I am.</p>
<p>---- is a place rich in historical interest and scenic beauties.
Freed from the rigid bonds of military discipline and the still more
hampering restrictions of official routine, I was at liberty to enjoy
them to the full. It was the opportunity of a lifetime to see something
of the real India. Did I take it? No, <i>Mr. Punch</i>, to be honest, I did
not.</p>
<p>After hundreds of years (so it seems) of Army active service rations,
of greasy mess tins and enamelled iron mugs, I found myself suddenly
confronted by civilised food waiting to be eaten in a civilised
fashion. And I fell. Starting with <i>chota hazri</i> at 7 <span class="sc">A.M.</span>, I
ate steadily every day till midnight. That is how I spent my holiday. I
may as well complete this shameful confession; it was the best time I
ever had in my life.</p>
<p>I feel confident that my stomachic feats will never be forgotten in
----. I shouldn't be surprised if in years to come the natives are
found worshipping a tree trunk or stone monolith rudely carved into the
semblance of an obese Territorial. It is pleasant to think that one may
even have founded a new religion.</p>
<p>But I am grieved and troubled about one thing. I ate plantains and
guavas and sweet limes and Cape gooseberries and pomolos and numberless
other Indian fruits (O bliss!), but not custard apples. Custard apples,
it appears, are the best of all, and they went out of season just
before I arrived in India and will not come into season again for
months and months.</p>
<p>I am confident that you will appreciate my predicament. I want the War
to finish quickly, but I want to eat custard apples. I want to get to
the Front and have a go at the Germans, but I desire passionately to
eat custard apples. I want to get home again to you, but after all I
have heard about them I feel that my life will have been lived in vain
if I do not eat custard apples. It is a trying position.</p>
<p>Home was very much in my thoughts at Christmas time. The fact of having
relatives around me, the plum pudding, the mince pies, the mistletoe,
the clean plates, the china cups and saucers, the crackers, the
cushions, the absence of stew,—all these and many other circumstances
served to remind me vividly of the old life in England. And when
regretfully I left ——, and (like a true soldier cheerfully running
desperate risks) travelled back in a first-class carriage with a
third-class ticket, I found at the Office yet another reminder of home
and the old days. My kindly colleagues had determined that I should not
feel I was in a strange land amid alien customs. They had let all the
work accumulate while I was away and had it waiting for me in a vast
pile on my return.</p>
<p>That is why this is such a short letter.</p>
<p class="center">
Yours ever,<br />
<span class="sc">One of the <i>Punch</i> Brigade</span>.
</p>
<p><span class="pagenum"><a name="Page_116" id="Page_116">[Pg 116]</a></span></p>
<hr class="short" />
<p class="ph4">THE CHEERY DOGS.</p>
<p class="center">I.—<i>Mr. A.</i></p>
<p>"Well, what have we done?—that's what I want to know. Where are the
Germans? In France and Belgium. Where are we? This side of them. Where
is their Navy? Still only too active. And so it goes on. My dear
fellow, I like to be cheerful, but you give me no material to do it on.
The cold truth is that we are just where we were months ago. 'Time is
on our side,' you say. May be; but the War can't go on for ever, and
meanwhile look at things here—food rising, coal rising, distress all
around. What do you think the income-tax is going to be soon? Ha! Still
it does not do to air these opinions and doubts. We must all be gay.
That is our first duty."</p>
<p class="center">II.—<i>Mr. B.</i></p>
<p>"Yes, of course there's Russia, as you say. But what is Russia? You
know what Russia is. They've no heart in fighting, and I'm told that
many personages in high places, and one very high indeed, are moving
at this moment towards peace. That would be a nice thing, wouldn't it?
It would liberate all the East frontier men and guns to come over to
the West. And there's another thing about Russia too—how is it to get
any more ammunition into the country with Archangel frozen? I suppose
you know that we have been supplying them with ammunition ever since
the start; and there's precious little left, I can tell you. You didn't
know that? You surprise me. No, it doesn't do to lean too much on
Russia. And money too. Where is that coming from? For ultimately, you
know, all wars are fought with money. We shall have to find that too.
So it isn't too easy to grin, is it? And yet I flatter myself that I
succeed in conveying an impression of distinct optimism."</p>
<p class="center">III.—<i>Mr. C.</i></p>
<p>"Well, of course, if all the naturalised Germans in this country are
not interned we have only ourselves to thank if we are completely
conquered. Think of the terrible advantage to the enemy to have waiters
spying on the guests in hotels and at once communicating with Berlin!
What chance have we if that kind of thing goes on? I was in an hotel at
Aylesbury only yesterday, and I am sure a waiter there was a German,
although he was called Swiss. He watched everything I ate. I tell you
there are German spies everywhere. What can a waiter at Aylesbury
tell Berlin? Ah! that's what we don't understand. But something of
the highest moment and all to our disadvantage in war. But we have
spies too? Never. I can't believe that England would ever be clever
enough to make use of any system of secret service. No, Sir, we're back
numbers. Still, it mustn't get out. We must all pretend, as I do, that
everything is all right."</p>
<p class="center">IV.—<i>Mr. D.</i></p>
<p>"I don't like the look of things in America, I can assure you.
Anything but satisfactory. <span class="sc">Dernburg's</span> a clever fellow and the
politicians can't forget what the German vote means to them. I see
nothing but trouble for us there. This Shipping Purchase Bill—that's
very grave, you know; and they don't like us—it's no use pretending
that they do. I read an extract only this morning from a most
significant article in <i>The Wells Fargo Tri-Weekly Leaflet</i> which shows
only too clearly how the wind is blowing. No, I view America and its
share in the future with the gloomiest forebodings, although of course
I do my best to conceal them. To the world I turn as brave a face as
anyone, I trust."</p>
<p class="center">V.—<i>Mr. E.</i></p>
<p>"I don't doubt the bravery of the French; but what I do say is, where
is the advance we were promised? Nibbling is all very well, but
meanwhile men are dying by the thousand, and the Germans are still in
the invaded country. I hear too of serious disaffection in France.
There's a stop-the-war party there, growing in strength every day.
We'll have 'em here soon, mark my words. The French have no stomach for
long campaigns. They want their results quickly, and then back to their
meals again. I take a very serious view of the situation, I can tell
you, although I do all I can to keep bright and hopeful, and disguise
my real feelings."</p>
<p class="center">VI.—<i>Mr. F.</i></p>
<p>"This activity of the German submarines is most depressing. Man for
man we may have a better navy, but when it comes to submarines they
beat us. What kind of chance have we against these stealthy invisible
death-dealers? They're the things that are going to do for us. I can
see it coming. But I keep the fact to myself as much as possible—one
must not be a wet blanket."</p>
<p class="center">VII.—<i>Mr. G.</i></p>
<p>"If only we had a decent government, instead of this set of weaklings,
I should feel more secure. But with this Cabinet—some of them
pro-Germans at heart, if the truth were known—what can you expect?
Still, one must not drag party politics in now. We must be solid for
the country, and if anyone raises his voice against the Liberals in my
presence he gets it hot, I can tell you. None the less a good rousing
attack by <span class="sc">Bonar Law</span> on the Government, root and branch, every
few days would be a grand thing. As I always say, the duty of the
Opposition is to oppose."</p>
<p>And these are not all.</p>
<hr class="short" />
<p class="ph4">REVERSES.</p>
<p class="center">(<i>From the Front.</i>)</p>
<div class="poem"><div class="stanza">
<span class="i2">Just a line to let you know, Jim, howall goes.<br /></span>
<span class="i4">Well, in spite of Bosches, rain and mud and muck,<br /></span>
<span class="i2">I've had nothing to complain of as I knows<br /></span>
<span class="i4">Till last week, when comes a run of rotten luck.<br /></span>
</div><div class="stanza">
<span class="i2">First, a Black Maria busts aside o' me,<br /></span>
<span class="i4">And I lost, well, I should say a hundred fags!<br /></span>
<span class="i2">Then I goes and drops a fine mouth-organ—see?<br /></span>
<span class="i4">And it sinks in one of these here slimy quags.<br /></span>
</div><div class="stanza">
<span class="i2">Then I chucks my kit down when we charged next day<br /></span>
<span class="i4">(You've no use for eighty pounds odd when you sprints),<br /></span>
<span class="i2">And while we was at it, what d' yer think, mate, eh?<br /></span>
<span class="i4">Why, some blighter pinched my tin o' peppermints!<br /></span>
</div><div class="stanza">
<span class="i2">Crool luck, warn't it? But I'm pretty bobbish still—<br /></span>
<span class="i4">Here's the Surgeon come, a very decent bloke;<br /></span>
<span class="i2">I'm in horspital, I should 'a' said—not ill,<br /></span>
<span class="i4">Just my right leg crocked and four or five ribs broke.<br /></span>
</div></div>
<hr class="short" />
<p>First Lessons in Seamanship.</p>
<p>Extract from the <span class="sc">Churchill</span> interview:—</p>
<div class="blockquote">
<p>"Pacing his room thoughtfully, Mr. Churchill paused before a globe
which he twirled round in his fingers like the rudder of a ship."</p></div>
<hr class="short" />
<p>This is "What 'Roger' Hears" in <i>The Northampton Daily Chronicle</i>:—</p>
<div class="blockquote">
<p>"That a burglar entered 34, Birchfield road, Northampton, last
evening, and decamped with several articles of jewellery while the
residents, Mr. and Mrs. Mace, were out for an hour and a half.</p>
<p>That the Belgian guests who are being so generously entertained by the
Mount Pleasant friends were present, and rendered musical items."</p></div>
<p>On police whistles, we hope.</p>
<p><span class="pagenum"><a name="Page_117" id="Page_117">[Pg 117]</a></span></p>
<hr class="tb" />
<div class="figcenter" style="width: 750px;">
<a href="images/117full.jpg">
<img src="images/117.jpg" width="750" height="514" alt="Small boy" /></a>
<p><i>Small boy.</i> "<span class="sc">What's on the poster, mother?</span>"</p>
<p><i>Mother.</i> "<span class="sc">Only 'more gains and losses,' but whether on our side or
the other it doesn't say</span>."</p></div>
<hr class="tb" />
<p class="ph4">BROKEN MELODIES.</p>
<p>"Aren't music publishers maddening?" said Clarice. "Here's a tune that
promises awfully well, and breaks off suddenly."</p>
<p>I went over to the piano.</p>
<p>On the music-rest was a sheet of music, back to front, showing the
opening bars of several songs the publishers wished to commend to our
notice; appetisers, as it were.</p>
<p>Clarice played the opening bars, the only ones which were given.</p>
<p>"Please continue," I said; "I'm beginning to like it already."</p>
<p>"How can I?" said Clarice. "How do I know how it goes on? It's simply
maddening."</p>
<p>"Aren't there any rules?" I said. "What I mean is, don't certain notes
follow certain other notes?"</p>
<p>"Not necessarily," said Clarice. "Why should they?"</p>
<p>"Why shouldn't they?" I persisted. "In hockey, footer, billiards and
the other arts certain movements are inevitably followed by certain
consequences. It ought to be the same in music. However, as a poet
it is the words which really interest me. Listen to this: '<i>Somebody
whispered to me yestre'en, Somebody whispered to me, And my heart gave
a flutter and</i>—' Ah, of course I know—<i>and I trod on the butter</i>."</p>
<p>"<i>Which soon wasn't fit to be seen</i>," said Clarice.</p>
<p>"Bravo," I said, "very soulful. Now look at the one above it: '<i>The
rosy glow of summer is on thy dimpled cheek, While</i>——' There's a
poser for you."</p>
<p>"Oh, how pretty!" said Clarice. "And listen to the tune." She played
what notes there were two or three times over. "I really must get that
one," she added.</p>
<p>"Do," I said. "I should like to hear more about that girl. These
publishers know how to whet one's appetite, don't they? By Jove, here's
a gem—'<i>I sat by the window dreaming, In the hush of eventide, Of
the</i>——' Now what does one dream about at that time?"</p>
<p>"You dream of dinner chiefly, I've noticed," said Clarice.</p>
<p>"That's the idea," I said. "<i>Of the soup (tomato) steaming, The steak
and mushrooms fried.</i> Who's the publisher?"</p>
<p>"Crammer," said Clarice.</p>
<p>I took up another sheet of music and hunted for more treasure. "Here's
something fruity," I said, "published by Scarey and Co.: '<i>Oh, the
lover hills are happy at the dawning of the day; There are winds to
kiss and bless us, there is</i>——'"</p>
<p>"What?" said Clarice.</p>
<p>"How should I know?" I said. "Let's get the song and find out. Get them
all, in fact."</p>
<p>"Do you think we ought to?" said Clarice.</p>
<p>"Yes, certainly," I said. "It's good for trade. My motto is 'Music as
Usual during the War.'"</p>
<hr class="short" />
<p>The Contractor's Touch.</p>
<div class="blockquote">
<p>From a label on a tin of Army jam:—</p>
<p class="ph4">"DAMSON AND APPLE,<br />
From Seville Oranges and Refined Sugar only."</p></div>
<p>Thus monotony is avoided.</p>
<hr class="short" />
<div class="blockquote">
<p>"In standing at ease recruits <i>will</i> not carry the left leg twelve
paces to the left, and balance the body on both legs equally."—<i>Royal
Magazine.</i></p></div>
<p>Probably they think that they would not feel really at ease if they
did. Personally we find that two paces and a half is our limit.</p>
<p><span class="pagenum"><a name="Page_118" id="Page_118">[Pg 118]</a></span></p>
<hr class="short" />
<p class="ph4">MORE THAN TWO.</p>
<p><i>Host.</i> No, please don't sit there.</p>
<p><i>1st Guest.</i> Oh yes, I much prefer it.</p>
<p><i>2nd Guest.</i> Do let me.</p>
<p><i>Host.</i> I can't have you sitting there.</p>
<p><i>1st Guest.</i> I assure you I like being back to the driver.</p>
<p><i>Host.</i> No, if anyone sits there, naturally it must be me.</p>
<p><i>2nd Guest.</i> Do let me.</p>
<p><i>1st Guest.</i> Not at all.</p>
<p><i>2nd Guest.</i> I assure you I prefer it too.</p>
<p><i>Host.</i> No, sit here. When you're both comfortably settled, I'll get in.</p>
<p><i>1st Guest.</i> Oh no, please. I'm sure you never sit there. I hate to
take away your own place.</p>
<p><i>2nd Guest.</i> Do let me.</p>
<p><i>Host.</i> I insist.</p>
<p><i>1st Guest.</i> Please don't say any more about it. See, I'm in now and
quite comfy.</p>
<p><i>Host.</i> It's very wrong of you to be there.</p>
<p><i>2nd Guest.</i> Do let me.</p>
<p><i>Host.</i> Can't I persuade you to change?</p>
<p><i>1st Guest.</i> No.</p>
<p><i>2nd Guest.</i> Do let me.</p>
<p><i>Host.</i> Well, it's very wrong. I know that.</p>
<p><i>1st Guest</i>. Please let us get on now. I never was more comfy in my
life.</p>
<p><i>Host.</i> You're sure?</p>
<p><i>2nd Guest.</i> Do let me.</p>
<p><i>Host.</i> But it's most unsatisfactory.</p>
<p><i>1st Guest.</i> Not at all.</p>
<p><i>Host.</i> Then you're sure you're all right?</p>
<p><i>1st Guest.</i> Absolutely. I love it here.</p>
<p><i>Host.</i> Very well then. (<i>Sighs.</i>)</p>
<p><i>2nd Guest.</i> Do let me.</p>
<p><i>1st Guest.</i> No, we're all fixed now.</p>
<p><i>Host.</i> All right. (<i>To chauffeur</i>) Let her go! (<i>To 1st Guest</i>) It's a
great shame, though.</p>
<p><i>1st Guest.</i> I love it.</p>
<p><i>2nd Guest.</i> I do wish you had let me.</p>
<p>And that is what happens whenever three polite people are about to ride
in a motor-car.</p>
<hr class="short" />
<p class="center">Shares.</p>
<div class="blockquote">
<p>"A purse, containing sum of money; owner can have some."—<i>Advt. in
"Portsmouth Evening News.</i>"</p></div>
<p>And the finder may keep the rest for his trouble.</p>
<hr class="short" />
<p><i>The Daily Chronicle</i> (Kingston, Jamaica) says of the new Military
Decoration:—</p>
<div class="blockquote">
<p>"It is of silver, and bears the imperial crown on each arm and in the
centre the letters 'G.R.I.' (George, ex-Imperator)."</p></div>
<p>At least that's <span class="sc">William's</span> interpretation of it.</p>
<hr class="short" />
<div class="figright" style="width: 301px;">
<a href="images/118full.jpg">
<img src="images/118.jpg" width="301" height="450" alt="CLEAN BRITISH HUMOUR" /></a>
<p class="center">CLEAN BRITISH HUMOUR.</p>
<p class="center">(<i>As the saying is.</i>)</p>
<p><span class="sc">Mr. Hawtrey and Miss Compton exchange Badinage over a bar of
soap.</span></p></div>
<p class="ph4">AT THE PLAY.</p>
<p class="center">"<span class="sc">A Busy Day.</span>"</p>
<p>I have always wanted to be a grocer. To spend the morning arranging
the currants in the window; to spend the afternoon recommending (with
a parent's partiality) such jolly things as bottled gooseberries and
bloater paste; to spend the evening examining the till and wondering if
you have got off the bad half-crown yet—that is a life. Many grocers,
I believe, do not realise it, and envy (foolishly enough) the dramatic
critic, knowing little of the troubles hidden behind his apparently
spotless shirt-front; but even they will admit that to be a grocer for
an hour would be fun.</p>
<p>And that (very nearly) was <i>Lord Charles Temperleigh's</i> luck. Being a
spendthrift he was kept at The Bungalow, Ashford, without money; he
escaped to the shop of his old nurse at Mudborough, with the idea of
borrowing from her—and if you are a clever dramatist you can easily
arrange that he should be left alone in the shop and mistaken for the
genuine salesman. Unfortunately for my complete happiness (and no doubt
<i>Lord Charles's</i> too) the shop was a chandler's; however, if that is
not the rose, it is at least very near it. The chandler sells soap and
the grocer sells cheese, and you can make a joke about the likeness as
Mr. <span class="sc">R. C. Carton</span> did. And if <i>Lord Charles</i> should happen to
be Mr. <span class="sc">Charles Hawtrey</span> and he should be accompanied by Miss
<span class="sc">Compton</span>, you can understand that this and other jokes would
lose nothing in their delivery.</p>
<p>Yet somehow the shop scene was not the success it should have
been. The First and Third Acts were better; they left more to Mr.
<span class="sc">Hawtrey</span>. When Mr. <span class="sc">Carton</span> is trying to be funny,
even Mr. <span class="sc">Hawtrey</span> cannot help him much; but when he is taking
it easily then he and Mr. <span class="sc">Hawtrey</span> together are delightful.
Mr. <span class="sc">Edward Fitzgerald</span> as an Irish waiter was a joy. Miss
<span class="sc">Compton</span> was Miss <span class="sc">Compton</span>; if you like her (as I
do), then you like her. The others had not much chance. It is a
<span class="sc">Hawtrey</span> evening, and (as such) an oasis in a desert of War
thoughts.</p>
<p class="author">
M.
</p>
<hr class="short" />
<p class="ph4">A PRELUDE.</p>
<div class="blockquote">
<p>["Birds in London are already growing alive to the approach of
Spring."—<i>The Times.</i>]</p></div>
<div class="poem"><div class="stanza">
<span class="i2">A portly, fancy-vested thrush,<br /></span>
<span class="i4">That carolled, on a wintry spray,<br /></span>
<span class="i2">A crazy song of Spring-time—Hush!<br /></span>
<span class="i10">No, not the one<br /></span>
<span class="i10">By <span class="sc">Mendelssohn</span><br /></span>
<span class="i4">Victorian Britons used to play,<br /></span>
<span class="i2">But just the sort of casual thing<br /></span>
<span class="i2">An absent-minded bird might sing.<br /></span>
</div><div class="stanza">
<span class="i2">Observing whom—"Alas," I said,<br /></span>
<span class="i4">"Good friend, how premature your theme!<br /></span>
<span class="i2">By some phenomenon misled,<br /></span>
<span class="i10">You've overshot<br /></span>
<span class="i10">The date a lot;<br /></span>
<span class="i4">Things are so seldom what they seem!"<br /></span>
<span class="i2">"Then hear the simple truth," quoth he,<br /></span>
<span class="i2">"For that's another rarity.<br /></span>
</div><div class="stanza">
<span class="i2">"There is a foreign, furious man,<br /></span>
<span class="i4">That sends great engines through the air<br /></span>
<span class="i2">To deal destruction where they can,<br /></span>
<span class="i10">To rain their fires<br /></span>
<span class="i10">On ancient spires,<br /></span>
<span class="i4">Ousting the birds that settle there,<br /></span>
<span class="i2">And agitates, of fixed intent,<br /></span>
<span class="i2">Our pleasaunce in the firmament.<br /></span>
</div><div class="stanza">
<span class="i2">"And everybody says the Spring<br /></span>
<span class="i4">Will see him pay the price of it,<br /></span>
<span class="i2">So that is why I choose to sing<br /></span>
<span class="i10">What isn't true—<br /></span>
<span class="i10">But as for you,<br /></span>
<span class="i4">Be off and do your little bit!<br /></span>
<span class="i2">It's not for you to stand and quiz—<br /></span>
<span class="i2">The season's <i>what I say it is!</i>"<br /></span>
</div></div>
<hr class="short" />
<div class="blockquote">
<p>"A Chicago Reuter message says that Hugh Henderson has won the
American draughts championship by defeating Alfred Jordan, the London
champion.</p>
<p>Draught horses were in most demand at Aldridge's, St. Martin's-lane,
yesterday, and the sums obtained ranged from 30gs. to 49gs."</p></div>
<p class="author">
<i>Daily Telegraph</i>.
</p>
<p>The forty-nine guinea one has challenged <span class="sc">Hugh Henderson</span>.</p>
<p><span class="pagenum"><a name="Page_119" id="Page_119">[Pg 119]</a></span></p>
<hr class="tb" />
<div class="figcenter" style="width: 650px;">
<a href="images/119full.jpg">
<img src="images/119.jpg" width="650" height="446" alt="East Coast Farmer" /></a>
<p><i>East Coast Farmer.</i> "<span class="sc">Have I really to do this wi'
all my beasts, if so be as the Germans land in these parts?</span>"</p>
<p><i>Officer.</i> "<span class="sc">Yes. Live stock of every description has to be branded
and driven west.</span>"</p>
<p><i>Farmer.</i> "<span class="sc">I can see my way all right except for my bees. What am I
to do wi' my bees?</span>"</p></div>
<hr class="tb" />
<p class="ph4">OUR BOOKING-OFFICE.</p>
<p class="center">(<i>By Mr. Punch's Staff of Learned Clerks.</i>)</p>
<p>There are few living writers of romance who can carry the sword and
doublet with the ease of Miss <span class="sc">Marjorie Bowen</span>. She has long
since proved herself a practised mistress of mediævalism, and <i>The
Carnival of Florence</i> (<span class="sc">Methuen</span>) finds her therefore on sure
ground. It is a pleasantly stimulating tale of love and adventure
in the days of <span class="sc">Savonarola</span>. The heroine is one <i>Aprilis</i>, a
fair Florentine whose matrimonial affairs were complicated by the
fact that early in the story she had been abducted (strictly <i>pour
le bon motif</i> in order to score off the gentleman to whom she was
then engaged) by the too notorious <span class="sc">Piero dei Medici</span>. The
unfortunate results were twofold, for though <i>Aprilis</i> was returned
unharmed to her father's house her noble betrothed would have no more
of her, so she had to put up with another husband who took her for
charity, and to suffer in addition the pangs of unrequited love for the
Lord of Florence whom she was unable to forget. What happened—how the
<span class="sc">Medici</span> were turned from their heritage, and the part played in
all this by the grim Revivalist of San Marco—is the matter of a story
well worth reading. As is his way with tales in which he appears, the
figure of <span class="sc">Savonarola</span> comes gradually to dominate the whole;
did he not even master <span class="sc">George Eliot</span>? The present story is
dedicated "In Memory of Florence, Summer 1914." Presumably, therefore,
Miss <span class="sc">Bowen</span> shares with me certain memories that have been very
vividly recalled by her pages—memories of a June evening when, as
in the days of which she writes, the Piazza della Signoria echoed to
the clash of swords and the tumult of an angry mob. That it has thus
reminded me of what would, but for greater happenings since, have been
one of my most thrilling chimney-corner reminiscences, is among the
pleasures that I owe to a stirring and successful novel.</p>
<hr class="short" />
<p>Among my favourite gambits in fiction is the return to his impoverished
home of one who left it a supposed wastrel, and has now lots and lots
of money. Personally, if I have a preference, it is that my wanderer
should be at first unrecognised; but I am perhaps too fastidious.
Certainly I am not going to complain about <i>Big Tremaine</i> (<span class="sc">Mills
and Boon</span>) just because when he came back to the Virginian township
that he had quitted as a bank thief his old coloured nurse saw through
him in once. There is, of course, Homeric precedent for the situation;
it is one that, deftly handled, can scarcely fail of its effect. And
the story of <i>Big Tremaine</i> is very deftly handled almost all through.
<span class="sc">Marie Van Vorst</span> evidently knows the gentle Southern life
thoroughly; her pictures of it have served to increase my conviction
that Virginia must be one of the pleasantest places on earth. Not less
true and delicate is her treatment of the relations between masterful
<i>Tremaine</i> and the gently obstinate mother who turns so slowly from
distrust to adoration of her returned son. There are, in short, a great
many qualities in this story that I have<span class="pagenum"><a name="Page_120" id="Page_120">[Pg 120]</a></span> found vastly agreeable. Also
what seems to me one big defect. But as this latter is so far essential
that without it there would be no story I am unable further to tell
you about it. Still, I am bound to say that its revelation was a nasty
shock to my admiration, which had been roused more than anything else
by the sincerity and unconventionality of the argument. This is a
matter on which you shall pass your own verdict. Mine would be "A Happy
Ending committed through unjustified fear of the libraries"; and in
view of the charm of her earlier chapters I should discharge the author
with a friendly caution.</p>
<hr class="short" />
<div class="figright" style="width: 322px;">
<a href="images/120full.jpg">
<img src="images/120.jpg" width="322" height="400" alt="Voice on telephone (from Berlin)" />
</a><p><i>Voice on telephone (from Berlin).</i> "<span class="sc">Well, have you
dammed the Suez Canal yet?</span>"</p>
<p><i>Turk.</i> "<span class="sc">Yes—often!</span>"</p></div>
<p>Most of us might freely confess to some vagueness in our minds as to
"the social and economic state of things in the Prairie Provinces of
the Dominion," and not a few of us are ready to spend five shillings
and a leisure hour or two in finding out for certain, if only to be
prepared with a refuge in the event of England being Teutonised. Miss
<span class="sc">E. B. Mitchell</span>, the author of <i>In Western Canada Before the
War</i> (<span class="sc">Murray</span>), knows her subject at first hand and deals
with the right matter in the right manner for our purpose; that is to
say, she is discriminating in her selection of topics and is always
pleasant if never violently exciting or amusing in her treatment of
them. The book is short, as such books should be; it does not pretend
to be exhaustive, yet it leaves a very clear and precise impression
on the mind. But (and every intelligent reader will have been waiting
for this "but") why on earth should it be called <i>In Western Canada
Before the War</i>, seeing that it was clearly written without any thought
of the present European conditions and would have been published just
about this time even if we had been at peace with everybody everywhere?
The only reference in point which I can recall is a passing wonder
expressed in a few lines as to what, if any, effect Armageddon will
have in Canada; this is hardly enough, I fancy, to justify the topical
suggestion of the cover. I cannot help feeling that the object of the
last three words of that title was less literary than commercial.</p>
<p><i>In the City of Under</i> (<span class="sc">Arnold</span>) shows Miss <span class="sc">Evelyne
Rynd</span> to have quite a pretty talent in the not unattractive <i>genre</i>
of fantastic incoherence something after the pattern of <i>The Napoleon
of Notting Hill</i>, though in a less robustious mood. But I doubt if
talent (however pretty) is altogether sufficient to carry the reader
through three hundred pages with no possible clue as to what it is
really all about. All the same I do, in justice and most gladly, say
that the author keeps one piqued to the extent of wishing to find
out; one also loses all suspicion of its being an improving book,
and distinctly likes that uncharacteristic Cheltenham boy, <i>Augustus
Clickson</i>, who helps little <i>John Hazard</i> to find a job. <i>John</i> was
very small and ineffectual and engaging, and his V.C. father had left
the family wofully ill off, and <i>John</i> felt it was up to him to do
something about it. He meets the <i>Hawker</i>, who has a comforting habit
of turning up at odd moments and assuring people that there's a way out
of every difficulty, whereas the old lady, <i>Mrs. Letitlie</i>, asserted
roundly and frequently that there was none. Then we have a nice wild
unpractical Professor and a perplexed archæologist who get tangled in
the skein; as also a spy, and, in fact, any old person and thing that
occurred to the writer. There's enough good stuff and good humour in
this queer patchwork to make me sure that any defect is one merely
of form, and I would wager that it was the Notting Hill hero, before
alluded to, that was responsible for setting our author on a dangerous
path.</p>
<hr class="short" />
<p><i>The Seventh Post Card</i> (<span class="sc">Greening</span>) was one of a series written
anonymously, as harbingers of sudden death, to motor-car drivers whose
bad luck or bad management had made them run over a fellow-creature
with capital consequences. Capital, also, for helping on the plot
of the story; for the sudden death really did come off in such a
considerable number of cases that we should have been quite justified
in feeling worried when the delightful <i>Joanna</i>, driving the car
belonging to her equally delightful <i>Jack</i>, was unfortunate enough to
knock down a tramp; even though the immediate consequences when <i>Jack</i>
found her awakening from unconsciousness by the roadside were—well,
delightful too, and such as could be expected. Indeed, the sadly-worn
word "delightful" seems somehow applicable to the entire string of
clues, deductions, inquests, murders and other horrid thrills, or, at
any rate, to Mr. <span class="sc">Flowerdew's</span> telling of them. Is my capability
for melodramatic emotion declining, that I thread this maze of tragic
mystery in a mood no more intense than that of comfortable content?
Perhaps; or it may be only the soothing effect of the author's clean
English, coupled with the conviction that so long as he takes care to
keep <i>Sir Julian Daymont</i>—the famous novelist-detective—on their
side, no serious harm can come to the people we care about most. So,
although a really nasty charge of murdering his grandfather turns up
against the hero just when things (but for the number of pages left)
are beginning to look prosperous, I can defy you to get seriously
uneasy about his future; and, sure enough, <i>Sir Conan</i>—I mean <i>Sir
Julian</i>—solves the problem in convenient time to pack the lovers
safely off on their honeymoon. And, really, what more could you ask for?</p>
<div>*** END OF THE PROJECT GUTENBERG EBOOK 44933 ***</div>
</body>
</html>
|