Package: screen / 4.1.0~20120320gitdb59704-7+deb7u1

59-fix-manpage-warnings.patch Patch series | download
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
Patch to fix minor issues with the man page:

* Lintian warning manpage-has-errors-from-man fixed by replacing all
  occurrences of "..." by "…"
* Fixes tons of lintian warnings hyphen-used-as-minus-sign
* Fixes two typos found by lintian

Index: screen/doc/screen.1
===================================================================
--- screen.orig/doc/screen.1	2012-06-10 15:07:54.000000000 +0200
+++ screen/doc/screen.1	2012-06-10 15:12:28.000000000 +0200
@@ -245,7 +245,7 @@
 strings identifying your
 .I screen
 sessions.
-Sessions marked `detached' can be resumed with \*Qscreen -r\*U. Those marked
+Sessions marked `detached' can be resumed with \*Qscreen \-r\*U. Those marked
 `attached' are running and have a controlling terminal. If the session runs in 
 multiuser mode, it is marked `multi'. Sessions marked as `unreachable' either
 live on a different host or are `dead'.
@@ -264,13 +264,13 @@
 .B \-m
 causes
 .I screen
-to ignore the $STY environment variable. With \*Qscreen -m\*U creation of
+to ignore the $STY environment variable. With \*Qscreen \-m\*U creation of
 a new session is enforced, regardless whether
 .I screen
 is called from within another
 .I screen
 session or not. This flag has a special meaning in connection
-with the `-d' option:
+with the `\-d' option:
 .TP 8
 .B \-d \-m
 Start
@@ -309,7 +309,7 @@
 .TP 5
 .B \-Q
 Some commands now can be queried from a remote session using this
-flag, e.g. 'screen -Q windows'. The commands will send the
+flag, e.g. \*Qscreen \-Q windows\*U. The commands will send the
 response to the stdout of the querying process. If there was an
 error in the command, then the querying process will exit with
 a non-zero status.
@@ -348,7 +348,7 @@
 .B \-R
 had not been specified. The option is set by default if
 .I screen
-is run as a login-shell (actually screen uses \*Q-xRR\*U in that case).
+is run as a login-shell (actually screen uses \*Q\-xRR\*U in that case).
 For combinations with the \fB\-d\fP/\fB\-D\fP option see there.
 .TP 5
 .BI "\-s " program 
@@ -359,7 +361,7 @@
 .BI "\-S " sessionname
 When creating a new session, this option can be used to specify a
 meaningful name for the session. This name identifies the session for
-\*Qscreen -list\*U and \*Qscreen -r\*U actions. It substitutes the
+\*Qscreen \-list\*U and \*Qscreen \-r\*U actions. It substitutes the
 default [\fItty.host\fP] suffix.
 .TP 5
 .BI "\-t " name
@@ -367,7 +369,7 @@
 See also the \*Qshelltitle\*U .screenrc command.
 .TP 5
 .BI "\-T " term
-Set the $TERM enviroment varible using the spcified term as
+Set the $TERM environment varible using the spcified term as
 opposed to the defualt setting of \fBscreen\fP.
 .TP 5
 .B \-U
@@ -379,7 +381,7 @@
 Print version number.
 .TP 5
 .BR \-wipe " [" \fImatch ]
-does the same as \*Qscreen -ls\*U, but removes destroyed sessions instead of
+does the same as \*Qscreen \-ls\*U, but removes destroyed sessions instead of
 marking them as `dead'.
 An unreachable session is considered dead, when its name matches either 
 the name of the local host, or the explicitly given parameter, if any.
@@ -425,7 +427,7 @@
 Present a list of all windows for selection.
 .IP "\fBC-a 0\fP	(select 0)"
 .PD 0
-.IP "\fB ... \fP	   ..."
+.IP "\fB … \fP	   …"
 .IP "\fBC-a 9\fP	(select 9)"
 .IP "\fBC-a -\fP	(select -)"
 .PD
@@ -647,7 +649,7 @@
 searches for the environment variable $SYSSCREENRC (this override feature
 may be disabled at compile-time). The user specific
 screenrc file is searched in $SCREENRC, then $HOME/.screenrc.
-The command line option \fB-c\fP takes
+The command line option \fB\-c\fP takes
 precedence over the above user screenrc files.
 .PP
 Commands in these files are used to set options, bind functions to
@@ -699,7 +701,7 @@
 .BI chacl " usernames permbits list"
 .PP
 Change permissions for a comma separated list of users. Permission bits are
-represented as `r', `w' and `x'. Prefixing `+' grants the permission, `-' 
+represented as `r', `w' and `x'. Prefixing `+' grants the permission, `\-'
 removes it. The third parameter is a comma separated list of commands and/or
 windows (specified either by number or title). The special list `#' refers to 
 all windows, `?' to all commands. if \fIusernames\fP consists of a single `*',
@@ -709,9 +711,9 @@
 user obtains a writelock for this window. 
 Other bits are currently ignored.  
 To withdraw the writelock from another user in window 2:
-`aclchg \fIusername\fP -w+w 2'.
+`aclchg \fIusername\fP \-w+w 2'.
 To allow read-only access to the session: `aclchg \fIusername\fP
--w \&"#\&"'. As soon as a user's name is known to 
+\-w \&"#\&"'. As soon as a user's name is known to
 .I screen 
 he can attach to the session and (per default) has full permissions for all 
 command and windows. Execution permission for the acl commands, `at' and others
@@ -746,11 +748,11 @@
 .ne 3
 .B aclumask
 .RI [[ users ] +bits 
-.RI |[ users ] -bits " .... ]"
+.RI |[ users ] \-bits " …. ]"
 .br
 .B umask
 .RI [[ users ] +bits 
-.RI |[ users ] -bits " .... ]"
+.RI |[ users ] \-bits " …. ]"
 .PP
 This specifies the access other users have to windows that will be created by
 the caller of the command.
@@ -805,7 +807,7 @@
 .sp
 .ne 3
 .BR "at " "[\fIidentifier\fP][" "#\fP|\fP*\fP|\fP%\fP] "
-.IR "command " [ args " ... ]"
+.IR "command " [ args " … ]"
 .PP
 Execute a command at other displays or windows as if it had been entered there.
 \*QAt\*U changes the context (the `current window' or `current display'
@@ -856,7 +858,7 @@
 .PP
 Change the color to bright red if bold text is to be printed.
 .IP
-attrcolor u "-u b"
+attrcolor u "\-u b"
 .PP
 Use blue text instead of underline.
 .IP
@@ -876,7 +878,7 @@
 .I screen
 will automatically detach upon hangup, which
 saves all your running programs until they are resumed with a
-.B "screen -r"
+.B "screen \-r"
 command.
 When turned off, a hangup signal will terminate 
 .I screen
@@ -894,7 +896,7 @@
 .I lifespan
 .I autorefresh
 .I cmd
-.I args...
+.I args…
 .br
 .BI "backtick " id
 .PP
@@ -948,7 +950,7 @@
 .sp
 .ne 3
 .BI "bind "
-.RB [ -c
+.RB [ \-c
 .IR class ]
 .I key 
 .RI [ command " [" args ]]
@@ -970,7 +972,7 @@
 for this key is removed.
 The \fIcommand\fP argument can be any command listed in this section.
 
-If a command class is specified via the \*Q-c\*U option, the key
+If a command class is specified via the \*Q\-c\*U option, the key
 is bound for the specified class. Use the \*Qcommand\*U command
 to activate a class. Command classes can be used to create multiple
 command keys or multi-character bindings.
@@ -983,7 +985,7 @@
 	bind k
 	bind K kill
 	bind ^f screen telnet foobar
-	bind \e033 screen -ln -t root -h 1000 9 su
+	bind \e033 screen \-ln \-t root \-h 1000 9 su
 .fi
 .PP
 would bind the space key to the command that displays a list
@@ -997,29 +999,29 @@
 a superuser shell and a scrollback buffer of 1000 lines.
 .PP
 .nf
-	bind -c demo1 0 select 10
-	bind -c demo1 1 select 11
-	bind -c demo1 2 select 12
-	bindkey "^B" command -c demo1
+	bind \-c demo1 0 select 10
+	bind \-c demo1 1 select 11
+	bind \-c demo1 2 select 12
+	bindkey "^B" command \-c demo1
 .fi
 .PP
 makes \*QC-b 0\*U select window 10, \*QC-b 1\*U window 11, etc.
 .PP
 .nf
-	bind -c demo2 0 select 10
-	bind -c demo2 1 select 11
-	bind -c demo2 2 select 12
-	bind - command -c demo2
+	bind \-c demo2 0 select 10
+	bind \-c demo2 1 select 11
+	bind \-c demo2 2 select 12
+	bind \- command \-c demo2
 .fi
 .PP
-makes \*QC-a - 0\*U select window 10, \*QC-a - 1\*U window 11, etc.
+makes \*QC-a \- 0\*U select window 10, \*QC-a \- 1\*U window 11, etc.
 .sp
 .ne 3
 .B bindkey
-.RB [ -d ]
-.RB [ -m ]
-.RB [ -a ]
-.RB [[ -k | -t ]
+.RB [ \-d ]
+.RB [ \-m ]
+.RB [ \-a ]
+.RB [[ \-k | \-t ]
 .I string
 .RI [ "cmd args" ]]
 .PP
@@ -1032,9 +1034,9 @@
 \*QINPUT TRANSLATION\*U for a list of default key bindings.
 .br
 If the
-.B -d
+.B \-d
 option is given, bindkey modifies the default table,
-.B -m
+.B \-m
 changes the copy mode table
 and with neither option the user table is selected.
 The argument
@@ -1042,18 +1044,18 @@
 is the sequence of characters to which an action is bound. This
 can either be a fixed string or a termcap keyboard capability
 name (selectable with the
-.B -k
+.B \-k
 option).
 .br
 Some keys on a VT100 terminal can send a different
 string if application mode is turned on (e.g the cursor keys).
 Such keys have two entries in the translation table. You can
 select the application mode entry by specifying the
-.B -a
+.B \-a
 option.
 .br
 The
-.B -t
+.B \-t
 option tells screen not to do inter-character timing. One cannot
 turn off the timing if a termcap capability is used.
 .br
@@ -1067,18 +1069,18 @@
 Here are some examples of keyboard bindings:
 .sp
 .nf
-        bindkey -d
+        bindkey \-d
 .fi
 Show all of the default key bindings. The application mode entries
 are marked with [A].
 .sp
 .nf
-        bindkey -k k1 select 1
+        bindkey \-k k1 select 1
 .fi
 Make the "F1" key switch to window one.
 .sp
 .nf
-        bindkey -t foo stuff barfoo
+        bindkey \-t foo stuff barfoo
 .fi
 Make "foo" an abbreviation of the word "barfoo". Timeout is disabled
 so that users can type slowly.
@@ -1092,7 +1094,7 @@
 you have to press the key twice (i.e., escape the escape binding).
 .sp
 .nf
-        bindkey -k F1 command
+        bindkey \-k F1 command
 .fi
 Make the F11 (not F1!) key an alternative screen
 escape (besides ^A).
@@ -1144,7 +1146,7 @@
 .PP
 Change the filename used for reading and writing with the paste buffer.
 If the optional argument to the \*Qbufferfile\*U command is omitted, 
-the default setting (\*Q/tmp/screen-exchange\*U) is reactivated.
+the default setting (\*Q/tmp/screen\-exchange\*U) is reactivated.
 The following example will paste the system's password file into 
 the
 .I screen
@@ -1213,7 +1215,7 @@
 to the specified directory or, if called without an argument,
 to your home directory (the value of the environment variable $HOME).
 All windows that are created by means of the \*Qscreen\*U command
-from within \*Q.screenrc\*U or by means of \*QC-a : screen ...\*U
+from within \*Q.screenrc\*U or by means of \*QC-a : screen …\*U
 or \*QC-a c\*U use this as their default directory.
 Without a chdir command, this would be the directory from which
 .I screen
@@ -1239,7 +1241,7 @@
 specific window creation and changing settings. Note that the \*Qset\*U
 keyword no longer exists! Usually commands affect the current window rather 
 than default settings for future windows. Change defaults with commands
-starting with 'def...'. 
+starting with 'def…'.
 
 If you consider this as the `Ex command mode' of 
 .IR screen ,
@@ -1247,12 +1249,12 @@
 .sp 
 .ne 3
 .B command
-.RB [ -c
+.RB [ \-c
 .IR class ]
 .PP
 This command has the same effect as typing the screen escape
 character (^A). It is probably only useful for key bindings.
-If the \*Q-c\*U option is given, select the specified command
+If the \*Q\-c\*U option is given, select the specified command
 class.  See also \*Qbind\*U and \*Qbindkey\*U.
 .sp 
 .ne 3
@@ -1443,7 +1445,7 @@
 .br
 .ti -2n
 \fB>\fP sets the (second) mark and writes the contents of the paste buffer to
-the screen-exchange file (/tmp/screen-exchange per default) once copy-mode is 
+the screen-exchange file (/tmp/screen\-exchange per default) once copy-mode is
 finished. 
 .br
 This example demonstrates how to dump the whole scrollback buffer 
@@ -1485,7 +1487,7 @@
 .PP
 Turns runtime debugging on or off. If 
 .I screen
-has been compiled with option -DDEBUG debugging available and is turned on per 
+has been compiled with option \-DDEBUG debugging available and is turned on per
 default. Note that this command only affects debugging output from the main 
 \*QSCREEN\*U process correctly. Debug output from attacher processes can only
 be turned off once and forever.
@@ -1659,7 +1661,7 @@
 .PP
 Same as the \fButf8\fP command except that the default setting for new
 windows is changed. Initial setting is `on' if screen was started with
-\*Q-U\*U, otherwise `off'.
+\*Q\-U\*U, otherwise `off'.
 .sp
 .ne 3
 .BR "defwrap on" | off
@@ -1682,7 +1684,7 @@
 .sp
 .ne 3
 .B detach
-.RB [ -h ]
+.RB [ \-h ]
 .PP
 Detach the 
 .I screen
@@ -1781,16 +1783,16 @@
 .br
 (I) Window permissions. Made up of three characters:
       (1st character)
-         ‘-’ : no read
+         ‘\-’ : no read
          ‘r’ : read
          ‘R’ : read only due to foreign wlock
       (2nd character)
-         ‘-’ : no write
+         ‘\-’ : no write
          ‘.’ : write suppressed by foreign wlock
          ‘w’ : write
          ‘W’ : own wlock
       (3rd character)
-         ‘-’ : no execute
+         ‘\-’ : no execute
          ‘x’ : execute
 
 \*QDisplays\*U needs a region size of at least 10 characters wide and 5 characters high in
@@ -1835,14 +1837,14 @@
 .IR tic .
 .sp
 .ne 3
-.BR "echo " [ -n ]
+.BR "echo " [ \-n ]
 .I message
 .PP
 The echo command may be used to annoy 
 .I screen
 users with a 'message of the
 day'. Typically installed in a global /etc/screenrc. 
-The option \*Q-n\*U may be used to suppress the line feed.
+The option \*Q\-n\*U may be used to suppress the line feed.
 See also \*Qsleep\*U.
 Echo is also useful for online checking of environment variables.
 .sp
@@ -1883,14 +1885,14 @@
 .B eval
 .I command1
 .RI [ command2
-.IR ... ]
+.IR … ]
 .PP
 Parses and executes each argument as separate command.
 .sp
 .ne 3
 .B exec
 .RI [[ fdpat ]
-.IR "newcommand " [ "args ..." ]]
+.IR "newcommand " [ "args …" ]]
 .PP
 Run a unix subprocess (specified by an executable path \fInewcommand\fP and its 
 optional arguments) in the current window. The flow of data between 
@@ -1933,7 +1935,7 @@
 .sp
 Examples:
 .IP
-exec ... /bin/sh
+exec … /bin/sh
 .br
 exec /bin/sh
 .br
@@ -1969,7 +1971,7 @@
 .I pg
 still works.
 .IP
-!:sed -n s/.*Error.*/\e007/p
+!:sed \-n s/.*Error.*/\e007/p
 .PP
 Sends window output to both, the user and the sed command. The sed inserts an
 additional bell character (oct. 007) to the window output seen by
@@ -2045,14 +2047,14 @@
 .sp
 .ne 3
 .B hardcopy
-.RB [ -h ]
+.RB [ \-h ]
 .RI [ file ]
 .PP
 Writes out the currently displayed image to the file \fIfile\fP,
 or, if no filename is specified, to \fIhardcopy.n\fP in the
 default directory, where \fIn\fP is the number of the current window. 
 This either appends or overwrites the file if it exists. See below.
-If the option \fB-h\fP is specified, dump also the contents of the
+If the option \fB\-h\fP is specified, dump also the contents of the
 scrollback buffer.
 .sp
 .ne 3
@@ -2123,22 +2125,22 @@
 .sp
 .ne 3
 .B height
-.RB [ -w | -d ]
+.RB [ \-w | \-d ]
 .RI [ lines " [" cols ]]
 .PP
 Set the display height to a specified number of lines. When no argument
 is given it toggles between 24 and 42 lines display. You can also
 specify a width if you want to change both values.
 The
-.B -w
+.B \-w
 option tells screen to leave the display size unchanged and just set
 the window size,
-.B -d
+.B \-d
 vice versa.
 .sp
 .ne 3
 .B help
-.RB [ -c
+.RB [ \-c
 .IR class ]
 .PP
 Not really a online help, but 
@@ -2149,7 +2151,7 @@
 bindings.
 Subsequent pages will display the custom commands, one command per key.
 Press space when you're done reading each page, or return to exit early.
-All other characters are ignored. If the \*Q-c\*U option is given,
+All other characters are ignored. If the \*Q\-c\*U option is given,
 display all bound commands for the specified command class.
 See also \*QDEFAULT KEY BINDINGS\*U section.
 .sp
@@ -2160,7 +2162,7 @@
 For example csh has the command \*Q!!\*U to repeat the last command executed. 
 .I Screen
 allows you to have a primitive way of re-calling \*Qthe command that
-started ...\*U: You just type the first letter of that command, then hit
+started …\*U: You just type the first letter of that command, then hit
 `C-a {' and
 .I screen
 tries to find a previous line that matches with the `prompt character' 
@@ -2202,11 +2204,11 @@
 
 .nf
   +flow     automatic flow control, currently on.
-  -flow     automatic flow control, currently off.
+  \-flow     automatic flow control, currently off.
   +(+)flow  flow control enabled. Agrees with automatic control.
-  -(+)flow  flow control disabled. Disagrees with automatic control.
-  +(-)flow  flow control enabled. Disagrees with automatic control.
-  -(-)flow  flow control disabled. Agrees with automatic control.
+  \-(+)flow  flow control disabled. Disagrees with automatic control.
+  +(\-)flow  flow control enabled. Disagrees with automatic control.
+  \-(\-)flow  flow control disabled. Agrees with automatic control.
 .fi
 
 The current line wrap setting (`+wrap' indicates enabled, `\-wrap' not) is
@@ -2467,7 +2469,7 @@
 a second time-stamp is added to document the restart of the
 output. You can change this timeout with the second form
 of the command. The third form is used for customizing the time-stamp
-string (`-- %n:%t -- time-stamp -- %M/%d/%y %c:%s --\\n' by
+string (`\-\- %n:%t \-\- time-stamp \-\- %M/%d/%y %c:%s \-\-\\n' by
 default).
 .sp
 .ne 3
@@ -2611,11 +2613,11 @@
 the display and redisplay the updated window contents.
 .sp
 .ne 3
-.BR "number " [[+|-] \fIn ]
+.BR "number " [[+|\-] \fIn ]
 .PP
 Change the current window's number. If the given number \fIn\fP is already 
 used by another window, both windows exchange their numbers. If no argument is
-specified, the current window number (and title) is shown. Using `+' or `-'
+specified, the current window number (and title) is shown. Using `+' or `\-'
 will change the window's number by the relative amount specified.
 .sp
 .ne 3
@@ -2771,18 +2773,18 @@
 .sp
 .ne 3
 .B readbuf
-.RB [ -e
+.RB [ \-e
 .IR encoding ]
 .RI [ filename ]
 .PP
 Reads the contents of the specified file into the paste buffer.
-You can tell screen the encoding of the file via the \fB-e\fP option.
+You can tell screen the encoding of the file via the \fB\-e\fP option.
 If no file is specified, the screen-exchange filename is used.
 See also \*Qbufferfile\*U command.
 .sp
 .ne 3
 .B readreg 
-.RB [ -e
+.RB [ \-e
 .IR encoding ]
 .RI [ register " [" filename ]]
 .PP
@@ -2791,7 +2793,7 @@
 or entered at the prompt. With two arguments it reads the contents of the named 
 file into the register, just as \fIreadbuf\fP reads the screen-exchange file
 into the paste buffer.
-You can tell screen the encoding of the file via the \fB-e\fP option.
+You can tell screen the encoding of the file via the \fB\-e\fP option.
 The following example will paste the system's password file into 
 the 
 .I screen 
@@ -2810,12 +2812,12 @@
 .sp
 .ne 3
 .B register
-.RB [ -e
+.RB [ \-e
 .IR encoding ]
 .I "key string"
 .PP
 Save the specified \fIstring\fP to the register \fIkey\fP.
-The encoding of the string can be specified via the \fB-e\fP option.
+The encoding of the string can be specified via the \fB\-e\fP option.
 See also the \*Qpaste\*U command.
 .sp
 .ne 3
@@ -2853,7 +2855,7 @@
 .IP
 resize +N	increase current region height by N
 .IP
-resize -N	decrease current region height by N
+resize \-N	decrease current region height by N
 .IP
 resize  N	set current region height to N
 .IP
@@ -2865,15 +2867,15 @@
 .PP
 .sp
 .ne 3
-.B "screen \fP[\fI-opts\fP] [\fIn\fP] [\fIcmd\fP [\fIargs\fP]|\fB//group\fP]"
+.B "screen \fP[\fI\-opts\fP] [\fIn\fP] [\fIcmd\fP [\fIargs\fP]|\fB//group\fP]"
 .PP
 Establish a new window.
 The flow-control options (\fB\-f\fP, \fB\-fn\fP and \fB\-fa\fP),
-title (a.\|k.\|a.) option (\fB\-t\fP), login options (\fB-l\fP and \fB-ln\fP)
-, terminal type option (\fB-T\fP <term>), the all-capability-flag (\fB-a\fP)
-and scrollback option (\fB-h\fP <num>) may be specified with each command. 
-The option (\fB-M\fP) turns monitoring on for this window.
-The option (\fB-L\fP) turns output logging on for this window.
+title (a.\|k.\|a.) option (\fB\-t\fP), login options (\fB\-l\fP and \fB\-ln\fP)
+, terminal type option (\fB\-T\fP <term>), the all-capability-flag (\fB\-a\fP)
+and scrollback option (\fB\-h\fP <num>) may be specified with each command.
+The option (\fB\-M\fP) turns monitoring on for this window.
+The option (\fB\-L\fP) turns output logging on for this window.
 If an optional number \fIn\fP in the range 0..MAXWIN-1 is given,
 the window number \fIn\fP is assigned to the newly created window
 (or, if this number is already in-use, the next available number).
@@ -2887,7 +2889,7 @@
 .nf
 	# example for .screenrc:
 	screen 1
-	screen -fn -t foobar -L 2 telnet foobar
+	screen \-fn \-t foobar \-L 2 telnet foobar
 .fi
 .sp
 .I screen
@@ -2927,19 +2929,19 @@
 Thus, the first window can be activated by \*Qselect 0\*U.
 The number of windows is limited at compile-time by the MAXWIN
 configuration parameter (which defaults to 40).
-There are two special WindowIDs, \*Q-\*U selects the
+There are two special WindowIDs, \*Q\-\*U selects the
 internal blank window and \*Q.\*U selects the current window. The
-latter is useful if used with screen's \*Q-X\*U option.
+latter is useful if used with screen's \*Q\-X\*U option.
 .sp
 .ne
 .BR "sessionname " [ \fIname ]
 .PP
-Rename the current session. Note, that for \*Qscreen -list\*U the
+Rename the current session. Note, that for \*Qscreen \-list\*U the
 name shows up with the process-id prepended. If the argument \*Qname\*U
 is omitted, the name of this session is displayed. Caution: The $STY 
 environment variables will still reflect the old name in pre-existing
 shells. This may result in confusion. Use of this command is generally
-discouraged. Use the \*Q-S\*U command-line option if you want to
+discouraged. Use the \*Q\-S\*U command-line option if you want to
 name a new session.
 The default is constructed from the tty and host names.
 .sp
@@ -2969,7 +2971,7 @@
 This overrides the value of the environment variable $SHELL.
 This is useful if you'd like to run a tty-enhancer which is expecting to
 execute the program specified in $SHELL. If the command begins with
-a '-' character, the shell will be started as a login-shell.
+a '\-' character, the shell will be started as a login-shell.
 .sp
 .ne 3
 .B "shelltitle \fItitle\fP"
@@ -3036,12 +3038,12 @@
 .sp
 .ne 3
 .B split
-.RB [ -v ]
+.RB [ \-v ]
 .PP
 Split the current region into two new ones. All regions on the
 display are resized to make room for the new region. The blank
 window is displayed on the new region. Splits are made horizontally
-unless -v is used. Use the \*Qremove\*U or the \*Qonly\*U command
+unless \-v is used. Use the \*Qremove\*U or the \*Qonly\*U command
 to delete regions. Use \*Qfocus\*U to toggle between regions.
 .sp
 .ne 3
@@ -3058,7 +3060,7 @@
 .I string
 in the input buffer of the current window.
 This is like the \*Qpaste\*U command but with much less overhead.
-Without a paramter, screen will prompt for a string to stuff.
+Without a parameter, screen will prompt for a string to stuff.
 You cannot paste
 large buffers with the \*Qstuff\*U command. It is most useful for key
 bindings. See also \*Qbindkey\*U.
@@ -3108,17 +3110,17 @@
 is VT100/ANSI compatible.
 The use of the \*Qterm\*U command is discouraged for non-default purpose.
 That is, one may want to specify special $TERM settings (e.g. vt100) for the
-next \*Qscreen rlogin othermachine\*U command. Use the command \*Qscreen -T vt100
+next \*Qscreen rlogin othermachine\*U command. Use the command \*Qscreen \-T vt100
 rlogin othermachine\*U rather than setting and resetting the default.
 .sp
 .ne 3
-.BI termcap " term terminal-tweaks"
+.BI termcap " term terminal\-tweaks"
 .RI [ window-tweaks ]
 .br
-.BI terminfo " term terminal-tweaks"
+.BI terminfo " term terminal\-tweaks"
 .RI [ window-tweaks ]
 .br
-.BI termcapinfo " term terminal-tweaks"
+.BI termcapinfo " term terminal\-tweaks"
 .RI [ window-tweaks ]
 .PP
 Use this command to modify your terminal's termcap entry without going
@@ -3234,7 +3236,7 @@
 Unbind all the bindings. This can be useful when
 screen is used solely for its detaching abilities, such as when
 letting a console application run as a daemon. If, for some reason,
-it is necessary to bind commands after this, use 'screen -X'.
+it is necessary to bind commands after this, use 'screen \-X'.
 .sp
 .ne 3
 .BI "unsetenv " var
@@ -3249,7 +3251,7 @@
 Change the encoding used in the current window. If utf8 is enabled, the
 strings sent to the window will be UTF-8 encoded and vice versa. Omitting the
 parameter toggles the setting. If a second parameter is given, the display's
-encoding is also changed (this should rather be done with screen's \*Q-U\*U
+encoding is also changed (this should rather be done with screen's \*Q\-U\*U
 option).
 See also \*Qdefutf8\*U, which changes the default setting of a new
 window.
@@ -3306,7 +3308,7 @@
 .sp
 .ne 3
 .B width
-.RB [ -w | -d ]
+.RB [ \-w | \-d ]
 .RI [ cols " [" lines ]]
 .PP
 Toggle the window width between 80 and 132 columns or set it to \fIcols\fP 
@@ -3315,17 +3317,17 @@
 See the \*Qtermcap\*U command for more information. You can also specify
 a new height if you want to change both values.
 The
-.B -w
+.B \-w
 option tells screen to leave the display size unchanged and just set
 the window size,
-.B -d
+.B \-d
 vice versa.
 .sp
 .ne 3
 .B windowlist
-.RB [ -b ]
-.RB [ -m ]
-.RB [ -g ]
+.RB [ \-b ]
+.RB [ \-m ]
+.RB [ \-g ]
 .br
 .B windowlist
 .B string
@@ -3339,15 +3341,15 @@
 If screen was in a window group, screen will
 back out of the group and then display the windows in that group.
 If the 
-.B -b
+.B \-b
 option is given, screen will switch to the blank window before
 presenting the list, so that the current window is also selectable.
 The
-.B -m
+.B \-m
 option changes the order of the windows, instead of sorting by
 window numbers screen uses its internal most-recently-used list.
 The
-.B -g
+.B \-g
 option will show the windows inside any groups in that level
 and downwards.
 
@@ -3435,7 +3437,7 @@
 Each window is listed by number with the name of process that has been
 started in the window (or its title);
 the current window is marked with a `*';
-the previous window is marked with a `-';
+the previous window is marked with a `\-';
 all the windows that are \*Qlogged in\*U are marked with a `$';
 a background window that has received a bell is marked with a `!';
 a background window that is being monitored and has had activity occur
@@ -3458,17 +3460,17 @@
 .sp
 .ne 3
 .B writebuf
-.RB [ -e
+.RB [ \-e
 .IR encoding ]
 .RI [ filename ]
 .PP
-Writes the contents of the paste buffer to the specified file, or the public accessible screen-exchange
+Writes the contents of the paste buffer to the specified file, or the public accessible screen\-exchange
 file if no filename is given. This is thought of as a primitive means of communication between
 .I screen
 users on the same host. If an encoding is specified the paste buffer
 is recoded on the fly to match the encoding.
 The filename can be set with the \fIbufferfile\fP
-command and defaults to \*Q/tmp/screen-exchange\*U.
+command and defaults to \*Q/tmp/screen\-exchange\*U.
 .sp
 .ne 3
 .BR "writelock " [ on | "off\fR|\fBauto\fR]"
@@ -3582,13 +3584,13 @@
 The normal window contains a shell (default, if no parameter is given) or any
 other system command that could be executed from a shell (e.g.  
 .BR slogin ,
-etc...) 
+etc…)
 
 .IP \(bu
 If a tty (character special device) name (e.g. \*Q/dev/ttya\*U)
 is specified as the first parameter, then the window is directly connected to
 this device. 
-This window type is similar to \*Qscreen cu -l /dev/ttya\*U.
+This window type is similar to \*Qscreen cu \-l /dev/ttya\*U.
 Read and write access is required on the device node, an exclusive open is
 attempted on the node to mark the connection line as busy.
 An optional parameter is allowed consisting of a comma separated list of flags
@@ -3598,11 +3600,11 @@
 Usually 300, 1200, 9600 or 19200. This affects transmission as well as receive speed.
 .IP "cs8 or cs7"
 Specify the transmission of eight (or seven) bits per byte.
-.IP "ixon or -ixon"
+.IP "ixon or \-ixon"
 Enables (or disables) software flow-control (CTRL-S/CTRL-Q) for sending data.
-.IP "ixoff or -ixoff"
+.IP "ixoff or \-ixoff"
 Enables (or disables) software flow-control for receiving data.
-.IP "istrip or -istrip"
+.IP "istrip or \-istrip"
 Clear (or keep) the eight bit in each received byte.
 .PP
 You may want to specify as many of these options as applicable. Unspecified
@@ -3727,7 +3729,7 @@
 .IP u
 all other users on this window
 .IP w
-all window numbers and names. With '-' qualifier: up to the current
+all window numbers and names. With '\-' qualifier: up to the current
 window; with '+' qualifier: starting with the window after the current
 one.
 .IP W
@@ -3747,7 +3749,7 @@
 A '0' qualifier tells screen to treat the number as absolute position.
 You can specify to pad relative to the last absolute pad position
 by adding a '+' qualifier or to pad relative to the right margin
-by using '-'. The padding truncates the string if the specified
+by using '\-'. The padding truncates the string if the specified
 position lies before the current position. Add the 'L' qualifier
 to change this.
 .IP <
@@ -3759,7 +3761,7 @@
 the output area. (The area starts from the last absolute pad
 position and ends with the position specified by the truncation
 operator.) The 'L' qualifier tells screen to mark the truncated
-parts with '...'.
+parts with '…'.
 .IP {
 attribute/color modifier string terminated by the next \*Q}\*U
 .IP `
@@ -3782,7 +3784,7 @@
 a color description. The following change types are known:
 .IP +
 add the specified set to the current attributes
-.IP -
+.IP \-
 remove the set from the current attributes
 .IP !
 invert the set in the current attributes
@@ -3843,7 +3845,7 @@
 the same behavior for two-letter color descriptions, also prefix them
 with a \*Q.\*U.
 .br
-As a special case, \*Q%{-}\*U restores the attributes and colors that
+As a special case, \*Q%{\-}\*U restores the attributes and colors that
 were set before the last change was made (i.e., pops one level of the
 color-change stack).
 .PP
@@ -3854,7 +3856,7 @@
 use bold red
 .IP "\*Q= yd\*U"
 clear all attributes, write in default color on yellow background.
-.IP "%-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%<"
+.IP "%\-Lw%{= BW}%50>%n%f* %t%{\-}%+Lw%<"
 The available windows centered at the current window and truncated to
 the available width. The current window is displayed white on blue.
 This can be used with \*Qhardstatus alwayslastline\*U.
@@ -3985,7 +3987,7 @@
 .PP
 Here's some .screenrc examples:
 .IP
-screen -t top 2 nice top
+screen \-t top 2 nice top
 .PP
 Adding this line to your .screenrc would start a nice-d version of the
 \*Qtop\*U command in window 2 named \*Qtop\*U rather than \*Qnice\*U.
@@ -4005,7 +4007,7 @@
 The window status would show the name \*Qtrn\*U while the command was
 running, and revert to \*Qcsh\*U upon completion.
 .IP
-bind R screen -t '% |root:' su
+bind R screen \-t '% |root:' su
 .PP
 Having this command in your .screenrc would bind the key
 sequence \*QC-a R\*U to the \*Qsu\*U command and give it an
@@ -4091,7 +4093,7 @@
 the contents of your $TERM variable.
 If no such entry exists,
 .I screen
-tries \*Qscreen\*U (or \*Qscreen-w\*U if the terminal is wide
+tries \*Qscreen\*U (or \*Qscreen\-w\*U if the terminal is wide
 (132 cols or more)).
 If even this entry cannot be found, \*Qvt100\*U is used as a
 substitute.
@@ -4134,7 +4136,7 @@
 When the is latter defined, its value will be copied verbatim into each
 window's $TERMCAP variable.
 This can either be the full terminal definition, or a filename where the
-terminal \*Qscreen\*U (and/or \*Qscreen-w\*U) is defined.
+terminal \*Qscreen\*U (and/or \*Qscreen\-w\*U) is defined.
 .PP
 Note that 
 .I screen
@@ -4286,7 +4288,7 @@
 .BR "ESC ] 83 ; cmd ^G" "	(A)"
 Execute screen command. This only works if multi-user support is
 compiled into screen. The pseudo-user \*Q:window:\*U is used to
-check the access control list. Use \*Qaddacl :window: -rwx #?\*U to
+check the access control list. Use \*Qaddacl :window: \-rwx #?\*U to
 create a user with no rights and allow only the needed commands.
 .TP 27
 .BR "Control-N" "	(A)"
@@ -4379,7 +4381,7 @@
 .B "ESC [ \fPPn\fB d"
 Cursor vertical position
 .TP 27
-.B "ESC [ \fPPs\fB ;\fP...\fB; \fPPs\fB m"
+.B "ESC [ \fPPs\fB ;\fP…\fB; \fPPs\fB m"
 Select Graphic Rendition
 .TP 27
 \h'\w'ESC [ 'u'Ps = None or \fB0\fP
@@ -4448,8 +4450,8 @@
 \h'\w'ESC [ Ps = 'u'\fB40\fP	(A)
 Background Black
 .TP 27
-\h'\w'ESC [ Ps = 'u'\fB...\fP
-...
+\h'\w'ESC [ Ps = 'u'\fB…\fP
+…
 .TP 27
 \h'\w'ESC [ Ps = 'u'\fB49\fP	(A)
 Background Default
@@ -4493,10 +4495,10 @@
 .B "ESC [ \fPPn\fB ^"
 same as above
 .TP 27
-.B "ESC [ \fPPs\fB ;\fP...\fB; \fPPs\fB h"
+.B "ESC [ \fPPs\fB ;\fP…\fB; \fPPs\fB h"
 Set Mode
 .TP 27
-.B "ESC [ \fPPs\fB ;\fP...\fB; \fPPs\fB l"
+.B "ESC [ \fPPs\fB ;\fP…\fB; \fPPs\fB l"
 Reset Mode
 .TP 27
 \h'\w'ESC [ 'u'Ps = \fB4\fP	(A)
@@ -4639,7 +4641,7 @@
 		stuff \e033Oy	(A)
 Keypad +	f+	stuff +
 		stuff \e033Ok	(A)
-Keypad -	f-	stuff -
+Keypad \-	f\-	stuff \-
 		stuff \e033Om	(A)
 Keypad *	f*	stuff *
 		stuff \e033Oj	(A)
@@ -4844,8 +4846,8 @@
 
 .SH FILES
 .PD 0
-.IP .../screen-4.?.??/etc/screenrc 34
-.IP .../screen-4.?.??/etc/etcscreenrc
+.IP …/screen-4.?.??/etc/screenrc 34
+.IP …/screen-4.?.??/etc/etcscreenrc
 Examples in the 
 .I screen
 distribution package for private and global initialization files.
@@ -4856,16 +4858,16 @@
 .IP $SCREENRC
 .IP $HOME/.screenrc
 Read in after /etc/screenrc
-.IP $SCREENDIR/S-<login>
-.IP /var/run/screen/S-<login>
+.IP $SCREENDIR/S\-<login>
+.IP /var/run/screen/S\-<login>
 Socket directories (default)
-.IP /usr/tmp/screens/S-<login>
+.IP /usr/tmp/screens/S\-<login>
 Alternate socket directories.
 .IP "<socket directory>/.termcap"
 Written by the "termcap" output function
-.IP /usr/tmp/screens/screen-exchange
+.IP /usr/tmp/screens/screen\-exchange
 or
-.IP /tmp/screen-exchange
+.IP /tmp/screen\-exchange
 .I screen
 `interprocess communication buffer'
 .IP hardcopy.[0-9]
@@ -4894,16 +4896,16 @@
 .SH COPYLEFT
 .nf
 Copyright (c) 2010
-	Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
+	Juergen Weigert (jnweiger@immd4.informatik.uni\-erlangen.de)
 	Sadrul Habib Chowdhury (sadrul@users.sourceforge.net)
 Copyright (c) 2008, 2009
-	Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
-	Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
+	Juergen Weigert (jnweiger@immd4.informatik.uni\-erlangen.de)
+	Michael Schroeder (mlschroe@immd4.informatik.uni\-erlangen.de)
 	Micah Cowan (micah@cowan.name)
 	Sadrul Habib Chowdhury (sadrul@users.sourceforge.net)
 Copyright (C) 1993-2003
-	Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
-	Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
+	Juergen Weigert (jnweiger@immd4.informatik.uni\-erlangen.de)
+	Michael Schroeder (mlschroe@immd4.informatik.uni\-erlangen.de)
 Copyright (C) 1987 Oliver Laumann
 .fi
 .PP
@@ -4925,8 +4927,8 @@
 .SH CONTRIBUTORS
 .nf
 Ken Beal (kbeal@amber.ssd.csd.harris.com),
-Rudolf Koenig (rfkoenig@immd4.informatik.uni-erlangen.de),
-Toerless Eckert (eckert@immd4.informatik.uni-erlangen.de), 
+Rudolf Koenig (rfkoenig@immd4.informatik.uni\-erlangen.de),
+Toerless Eckert (eckert@immd4.informatik.uni\-erlangen.de),
 Wayne Davison (davison@borland.com),
 Patrick Wolfe (pat@kai.com, kailand!pat),
 Bart Schaefer (schaefer@cse.ogi.edu),
@@ -4967,10 +4969,10 @@
 .I GNU 
 distribution site. The home site of
 .I screen
-is ftp.uni-erlangen.de, in the directory
+is ftp.uni\-erlangen.de, in the directory
 pub/utilities/screen. The subdirectory `private' contains the latest beta
 testing release. If you want to help, send a note to
-screen@uni-erlangen.de.
+screen@uni\-erlangen.de.
 
 .SH BUGS
 .PD
@@ -5015,9 +5017,9 @@
 unless the device driver is configured to send a HANGUP signal. 
 To detach a 
 .I screen
-session use the -D or -d command line option.
+session use the \-D or \-d command line option.
 .IP \(bu
-If a password is set, the command line options -d and -D still detach a 
+If a password is set, the command line options \-d and \-D still detach a
 session without asking.
 .IP \(bu
 Both \*Qbreaktype\*U and \*Qdefbreaktype\*U change the break generating
@@ -5032,5 +5034,5 @@
 A weird imagination is most useful to gain full advantage of all the features.
 .IP \(bu
 Send bug-reports, fixes, enhancements, t-shirts, money, beer & pizza to
-.BR screen@uni-erlangen.de .
+.BR screen@uni\-erlangen.de .