]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
Many pages: Use \[ti] instead of \(ti
authorAlejandro Colomar <alx@kernel.org>
Sun, 5 Feb 2023 22:02:42 +0000 (23:02 +0100)
committerAlejandro Colomar <alx@kernel.org>
Sun, 5 Feb 2023 22:02:42 +0000 (23:02 +0100)
Signed-off-by: Alejandro Colomar <alx@kernel.org>
39 files changed:
man1/intro.1
man2/clock_getres.2
man2/clone.2
man2/close_range.2
man2/futex.2
man2/ioctl_fat.2
man2/ioctl_tty.2
man2/mkdir.2
man2/mknod.2
man2/mmap.2
man2/open.2
man2/statx.2
man2/umask.2
man2/userfaultfd.2
man3/glob.3
man3/mkfifo.3
man3/termios.3
man3/wordexp.3
man4/console_codes.4
man4/sk98lin.4
man4/vcs.4
man5/dir_colors.5
man5/hosts.equiv.5
man5/proc.5
man5/termcap.5
man5/utmp.5
man7/ascii.7
man7/charsets.7
man7/environ.7
man7/glob.7
man7/mailaddr.7
man7/man-pages.7
man7/netlink.7
man7/operator.7
man7/suffixes.7
man7/tcp.7
man7/unicode.7
man7/uri.7
man8/zic.8

index a46665f8d4ecc55b6c56ef04055f1ed5c51949f4..5c60aa520e15dfb9c4ad4b93979ace80fca51a5f 100644 (file)
@@ -200,7 +200,7 @@ and
 .I pwd
 commands and explore
 .I cd
-usage: "cd", "cd .", "cd ..", "cd /", and "cd \(ti".
+usage: "cd", "cd .", "cd ..", "cd /", and "cd \[ti]".
 .SS Directories
 The command
 .I mkdir
index 94328b446ac8cab4fc1d063e96cc2226e11b71da..c10f980faa268c6227cb57fe45a02142c4577c5a 100644 (file)
@@ -224,8 +224,8 @@ dynamic clock ID.
 .in +4n
 .EX
 #define CLOCKFD 3
-#define FD_TO_CLOCKID(fd)   ((\(ti(clockid_t) (fd) << 3) | CLOCKFD)
-#define CLOCKID_TO_FD(clk)  ((unsigned int) \(ti((clk) >> 3))
+#define FD_TO_CLOCKID(fd)   ((\[ti](clockid_t) (fd) << 3) | CLOCKFD)
+#define CLOCKID_TO_FD(clk)  ((unsigned int) \[ti]((clk) >> 3))
 
 struct timespec ts;
 clockid_t clkid;
index 0751dc853942fe093f9ec1edc27a8ffc694d5bce..f318e319a7c0a4cc8b34426a1ef66a8c1e30c4f6 100644 (file)
@@ -267,7 +267,7 @@ l l l
 li li l.
 clone()        clone3()        Notes
        \fIcl_args\fP field
-flags & \(ti0xff       flags   T{
+flags & \[ti]0xff      flags   T{
 For most flags; details below
 T}
 parent_tid     pidfd   See CLONE_PIDFD
index 143970387e9d868463f985df0eb8ce6b1a5439e2..dd9406ddc3442a2850412156aef6a3b6fe876cfe 100644 (file)
@@ -260,7 +260,7 @@ main(int argc, char *argv[])
 
     printf("========= About to call close_range() =======\en");
 
-    if (syscall(SYS_close_range, 3, \(ti0U, 0) == \-1) {
+    if (syscall(SYS_close_range, 3, \[ti]0U, 0) == \-1) {
         perror("close_range");
         exit(EXIT_FAILURE);
     }
index fcb328c95002cff6418929056e4153d6799958c1..33a08a14b7a01b4b7bdccbdfce289e9e3785340c 100644 (file)
@@ -673,7 +673,7 @@ component has one of the following values:
 FUTEX_OP_SET        0  /* uaddr2 = oparg; */
 FUTEX_OP_ADD        1  /* uaddr2 += oparg; */
 FUTEX_OP_OR         2  /* uaddr2 |= oparg; */
-FUTEX_OP_ANDN       3  /* uaddr2 &= \(tioparg; */
+FUTEX_OP_ANDN       3  /* uaddr2 &= \[ti]oparg; */
 FUTEX_OP_XOR        4  /* uaddr2 \(ha= oparg; */
 .EE
 .in
index 0b5e643359011c5aa5f70f77fda91b09f2fc1ba7..9329ac7e8153e338b026fc1950e4c285d44e378b 100644 (file)
@@ -410,7 +410,7 @@ The following was recorded when applying the program to the directory
 $ \fB./fat_dir /mnt/user\fP
 \[char46] \-> \[aq]\[aq]
 \[char46]. \-> \[aq]\[aq]
-ALONGF\(ti1.TXT \-> \[aq]a long filename.txt\[aq]
+ALONGF\[ti]1.TXT \-> \[aq]a long filename.txt\[aq]
 UPPER.TXT \-> \[aq]\[aq]
 LOWER.TXT \-> \[aq]lower.txt\[aq]
 .EE
index fa4f65393500493f28e1635e60d53e713d39ce7b..8d2f08242f0d1b700b44b8de4a8a3f795c275652 100644 (file)
@@ -847,12 +847,12 @@ main(int argc, char *argv[])
     /* Change baud rate when more arguments were provided */
     if (argc == 3 || argc == 4) {
         /* Clear the current output baud rate and fill a new value */
-        tio.c_cflag &= \(tiCBAUD;
+        tio.c_cflag &= \[ti]CBAUD;
         tio.c_cflag |= BOTHER;
         tio.c_ospeed = atoi(argv[2]);
 
         /* Clear the current input baud rate and fill a new value */
-        tio.c_cflag &= \(ti(CBAUD << IBSHIFT);
+        tio.c_cflag &= \[ti](CBAUD << IBSHIFT);
         tio.c_cflag |= BOTHER << IBSHIFT;
         /* When 4th argument is not provided reuse output baud rate */
         tio.c_ispeed = (argc == 4) ? atoi(argv[3]) : atoi(argv[2]);
index 3f05b55a08e2e2832ddea7ba67bad4fbaa9dc7e0..b1339a49a5134a38a16ef92b9d624f6a814ef576 100644 (file)
@@ -49,7 +49,7 @@ It is modified by the process's
 .I umask
 in the usual way: in the absence of a default ACL, the mode of the
 created directory is
-.RI ( mode " & \(ti" umask " & 0777)."
+.RI ( mode " & \[ti]" umask " & 0777)."
 Whether other
 .I mode
 bits are honored for the created directory depends on the operating system.
index a606a3c5f021bdc8fd8414658ad8226d8169f8b3..25657a9d1133ad44d41f3906a830590d0d4e7579 100644 (file)
@@ -63,7 +63,7 @@ The file mode is modified by the process's
 .I umask
 in the usual way: in the absence of a default ACL, the permissions of the
 created node are
-.RI ( mode " & \(ti" umask ).
+.RI ( mode " & \[ti]" umask ).
 .PP
 The file type must be one of
 .BR S_IFREG ,
index f45165eef0d6d5c40accaa61133966a3c36beb2c..1ecd8637ce7ab2c9b99a7215d2efe73ce13d9fec 100644 (file)
@@ -966,7 +966,7 @@ main(int argc, char *argv[])
         handle_error("fstat");
 
     offset = atoi(argv[2]);
-    pa_offset = offset & \(ti(sysconf(_SC_PAGE_SIZE) \- 1);
+    pa_offset = offset & \[ti](sysconf(_SC_PAGE_SIZE) \- 1);
         /* offset for mmap() must be page aligned */
 
     if (offset >= sb.st_size) {
index 398e30260707535ed59bdf3869d1202f5af02861..41111c2a4dd263df691208f8e05c05618f14ce5d 100644 (file)
@@ -293,7 +293,7 @@ The effective mode is modified by the process's
 .I umask
 in the usual way: in the absence of a default ACL, the mode of the
 created file is
-.IR "(mode\ &\ \(tiumask)" .
+.IR "(mode\ &\ \[ti]umask)" .
 .IP
 Note that
 .I mode
index 328a2de35608e563c16854ea8ddbf157267346a3..c79f3c219d4d6fed173237a7ad64bac2eb7aa256 100644 (file)
@@ -238,7 +238,7 @@ is an ORed combination of the following constants:
 .TS
 lB l.
 STATX_TYPE     Want stx_mode & S_IFMT
-STATX_MODE     Want stx_mode & \(tiS_IFMT
+STATX_MODE     Want stx_mode & \[ti]S_IFMT
 STATX_NLINK    Want stx_nlink
 STATX_UID      Want stx_uid
 STATX_GID      Want stx_gid
index 6f1d6a5fd47fedcf7697147de562ae58cb0422e9..541d81c665ff93b6fcb3ebe81a5fa144efadbdf3 100644 (file)
@@ -95,7 +95,7 @@ resulting file will be:
 .EE
 .in
 .PP
-(because 0666 & \(ti022 = 0644; i.e. rw\-r\-\-r\-\-).
+(because 0666 & \[ti]022 = 0644; i.e. rw\-r\-\-r\-\-).
 .SH RETURN VALUE
 This system call always succeeds and the previous value of the mask
 is returned.
index dfe5346204432d4754de227c1a96fa9425791194..7a0181f2a37f289ce39510cda20edd6755ecac8a 100644 (file)
@@ -845,7 +845,7 @@ fault_handler_thread(void *arg)
            So, round faulting address down to page boundary. */
 
         uffdio_copy.dst = (unsigned long) msg.arg.pagefault.address &
-                                           \(ti(page_size \- 1);
+                                           \[ti](page_size \- 1);
         uffdio_copy.len = page_size;
         uffdio_copy.mode = 0;
         uffdio_copy.copy = 0;
index a3923e2329d63bdf0008b279ccda9440f1a628d9..5fb53ec29149ed6fe70601c47b50991240a4d9c1 100644 (file)
@@ -160,11 +160,11 @@ even if there is no file with that name.
 .TP
 .B GLOB_TILDE
 Carry out tilde expansion.
-If a tilde (\[aq]\(ti\[aq]) is the only character in the pattern,
+If a tilde (\[aq]\[ti]\[aq]) is the only character in the pattern,
 or an initial tilde is followed immediately by a slash (\[aq]/\[aq]),
 then the home directory of the caller is substituted for
 the tilde.
-If an initial tilde is followed by a username (e.g., "\(tiandrea/bin"),
+If an initial tilde is followed by a username (e.g., "\[ti]andrea/bin"),
 then the tilde and username are substituted by the home directory
 of that user.
 If the username is invalid, or the home directory cannot be
index 18b74e07cd470b1f31120526af847e9015ee3417..52646b490795ba4a7fdc50ad2f9a3611e12a6fea 100644 (file)
@@ -43,7 +43,7 @@ makes a FIFO special file with name \fIpathname\fP.
 \fImode\fP specifies the FIFO's permissions.
 It is modified by the
 process's \fBumask\fP in the usual way: the permissions of the created
-file are \fB(\fP\fImode\fP\fB & \(tiumask)\fP.
+file are \fB(\fP\fImode\fP\fB & \[ti]umask)\fP.
 .PP
 A FIFO special file is similar to a pipe, except that it is created
 in a different way.
index 6e360665db694a58bf498c14fe162e6579a8b7b8..f476f2dd09b1f80e7cd4b024a58ad6a005e1f897 100644 (file)
@@ -836,11 +836,11 @@ The terminal attributes are set as follows:
 .PP
 .in +4n
 .EX
-termios_p\->c_iflag &= \(ti(IGNBRK | BRKINT | PARMRK | ISTRIP
+termios_p\->c_iflag &= \[ti](IGNBRK | BRKINT | PARMRK | ISTRIP
                 | INLCR | IGNCR | ICRNL | IXON);
-termios_p\->c_oflag &= \(tiOPOST;
-termios_p\->c_lflag &= \(ti(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
-termios_p\->c_cflag &= \(ti(CSIZE | PARENB);
+termios_p\->c_oflag &= \[ti]OPOST;
+termios_p\->c_lflag &= \[ti](ECHO | ECHONL | ICANON | ISIG | IEXTEN);
+termios_p\->c_cflag &= \[ti](CSIZE | PARENB);
 termios_p\->c_cflag |= CS8;
 .EE
 .in
index bc0049a2941f8829124e8eb3ccce89435e2c3666..df385ba3db4c33beeae321804cdab3c0c3d3cc06 100644 (file)
@@ -88,7 +88,7 @@ then it is unspecified whether that word and all following words
 are ignored, or the # is treated as a non-comment character.
 .SS The expansion
 The expansion done consists of the following stages:
-tilde expansion (replacing \(tiuser by user's home directory),
+tilde expansion (replacing \[ti]user by user's home directory),
 variable substitution (replacing $FOO by the value of the environment
 variable FOO), command substitution (replacing $(command) or \`command\`
 by the output of command), arithmetic expansion, field splitting,
index a25c54c8bdb73cfffac118af85c8734ec51a60f1..ebbbaf23329b35f6f5287d2ba55b408095d5abb5 100644 (file)
@@ -717,7 +717,7 @@ ESC n       LS2     Invoke the G2 character set.
 ESC o  LS3     Invoke the G3 character set.
 ESC |  LS3R    Invoke the G3 character set as GR.
 ESC }  LS2R    Invoke the G2 character set as GR.
-ESC \(ti       LS1R    Invoke the G1 character set as GR.
+ESC \[ti]      LS1R    Invoke the G1 character set as GR.
 .TE
 .PP
 It also recognizes ESC % and provides a more complete UTF-8
index bb747d9b36713e9e7e27c1f4699530f0b4f04b82..51c6ad2f42318f286596b6f0899f191806299080 100644 (file)
@@ -154,13 +154,13 @@ which can be found on the Internet:
 .PP
 .IR VLAN \c
 :
-.UR http://www.candelatech.com\:/\(tigreear\:/vlan.html
+.UR http://www.candelatech.com\:/\[ti]greear\:/vlan.html
 .UE
 .br
 .I Link
 .IR Aggregation \c
 :
-.UR http://www.st.rim.or.jp\:/\(tiyumo
+.UR http://www.st.rim.or.jp\:/\[ti]yumo
 .UE
 .PP
 Note that Marvell/SysKonnect does not offer any support for these
index dd80628c28137f867e6bb2b92673bbfac058de9a..2958ee40dee4b5df93454a1b05f406f3074270a3 100644 (file)
@@ -157,7 +157,7 @@ main(void)
     ch = s & 0xff;
     if (s & mask)
         ch |= 0x100;
-    attrib = ((s & \(timask) >> 8);
+    attrib = ((s & \[ti]mask) >> 8);
     printf("ch=%#03x attrib=%#02x\en", ch, attrib);
     s \(ha= 0x1000;
     (void) lseek(fd, \-2, SEEK_CUR);
index be8cba4dbbf7e9ab9ffeb1451ecc5461ea299c02..e9b394aeebdf54cbbe484744a7a5230f7007de50 100644 (file)
@@ -229,7 +229,7 @@ ends in .\fIextension\fR.
 Note that the period is included in the
 extension, which makes it impossible to specify an extension not
 starting with a period, such as
-.B \(ti
+.B \[ti]
 for
 .B emacs
 backup files.
@@ -382,7 +382,7 @@ hash mark as the first character.
 .I /etc/DIR_COLORS
 System-wide configuration file.
 .TP
-.I \(ti/.dir_colors
+.I \[ti]/.dir_colors
 Per-user configuration file.
 .PP
 This page describes the
index 6ca1d674a007dbcd7cf23dd5c530e64d0441a015..7b8e359c3eb287e77ab7b7858697a61c70803ea3 100644 (file)
@@ -84,7 +84,7 @@ the particular service
 Below are some example
 .I /etc/host.equiv
 or
-.I \(ti/.rhosts
+.I \[ti]/.rhosts
 files.
 .PP
 Allow any user to log in from any host:
index 2b0a8af69d518b83bb4d417e2039184f47eebde8..6efdc51cbf2880fe183cf55facbebe5177c812ef 100644 (file)
@@ -3627,7 +3627,7 @@ It is more eligible to be reclaimed for other purposes.
 .IR HighTotal " %lu"
 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
 Total amount of highmem.
-Highmem is all memory above \(ti860 MB of physical memory.
+Highmem is all memory above \[ti]860 MB of physical memory.
 Highmem areas are for use by user-space programs,
 or for the page cache.
 The kernel must use tricks to access
index d295ef9b9fb5e136603d264d27cddcd173ae11ba..6272e84f39d6a6962af3749b6374181414398834 100644 (file)
@@ -453,7 +453,7 @@ u   right tee (+)
 v      bottom tee (+)
 w      normal tee (+)
 x      vertical line (|)
-\(ti   paragraph (???)
+\[ti]  paragraph (???)
 .fi
 .PP
 The values in parentheses are suggested defaults which are used by the
index 430cff4b457a68da5fe460d3deb4f40a343e2e63..d1017f818527116118e65c8b210e2c60f0f1c6b2 100644 (file)
@@ -196,7 +196,7 @@ The \fIwtmp\fP file records all logins and logouts.
 Its format is exactly like \fIutmp\fP except that a null username
 indicates a logout
 on the associated terminal.
-Furthermore, the terminal name \fB\(ti\fP
+Furthermore, the terminal name \fB\[ti]\fP
 with username \fBshutdown\fP or \fBreboot\fP indicates a system
 shutdown or reboot and the pair of terminal names \fB|\fP/\fB}\fP
 logs the old/new system time when
index cf4d43371764de8d5c5cd408afbbeb4903d72baa..89abd3235aa38966fd12d9a59b5111c892e3f498 100644 (file)
@@ -95,7 +95,7 @@ _
 073    59      3B      ;       173     123     7B      {
 074    60      3C      <       174     124     7C      |
 075    61      3D      =       175     125     7D      }
-076    62      3E      >       176     126     7E      \(ti
+076    62      3E      >       176     126     7E      \[ti]
 077    63      3F      ?       177     127     7F      DEL
 .TE
 .if t \{\
@@ -118,7 +118,7 @@ For convenience, below are more compact tables in hex and decimal.
 3: # 3 C S c s     3: !  +  5  ?  I  S  ]  g   q   {
 4: $ 4 D T d t     4: "  ,  6  @  J  T  \(ha  h   r   |
 5: % 5 E U e u     5: #  \-  7  A  K  U  _  i   s   }
-6: & 6 F V f v     6: $  .  8  B  L  V  \`  j   t   \(ti
+6: & 6 F V f v     6: $  .  8  B  L  V  \`  j   t   \[ti]
 7: \[aq] 7 G W g w     7: %  /  9  C  M  W  a  k   u  DEL
 8: ( 8 H X h x     8: &  0  :  D  N  X  b  l   v
 9: ) 9 I Y i y     9: \[aq]  1  ;  E  O  Y  c  m   w
@@ -126,7 +126,7 @@ A: * : J Z j z
 B: + ; K [ k {
 C: , < L \e l |
 D: \- = M ] m }
-E: . > N \(ha n \(ti
+E: . > N \(ha n \[ti]
 F: / ? O _ o DEL
 .if t \{\
 .in
index 25896e5109992d141a433c95da65a65ddfce39d8..d2627e671ca5f3496da89d174be2d45ccd1bfcbb 100644 (file)
@@ -215,7 +215,7 @@ G0 always has size 94 and uses codes 041\[en]0176.
 .PP
 Switching between character sets is done using the shift functions
 \fB\(haN\fP (SO or LS1), \fB\(haO\fP (SI or LS0), ESC n (LS2), ESC o (LS3),
-ESC N (SS2), ESC O (SS3), ESC \(ti (LS1R), ESC } (LS2R), ESC | (LS3R).
+ESC N (SS2), ESC O (SS3), ESC \[ti] (LS1R), ESC } (LS2R), ESC | (LS3R).
 The function LS\fIn\fP makes character set G\fIn\fP the current one
 for codes with high bit zero.
 The function LS\fIn\fPR makes character set G\fIn\fP the current one
index 36a2a51c9180674bdb09254bc496d9adf3578457..be71add29a86454819f5c7557b4954f8587ec4e0 100644 (file)
@@ -193,7 +193,7 @@ command shall be valid.
 .\" .TP
 .\" .B BROWSER
 .\" The user's preferred utility to browse URLs. Sequence of colon-separated
-.\" browser commands. See http://www.catb.org/\(tiesr/BROWSER/ .
+.\" browser commands. See http://www.catb.org/\[ti]esr/BROWSER/ .
 .PP
 Note that the behavior of many programs and library routines is
 influenced by the presence or value of certain environment variables.
index f3492bcbe4adf6f388fa6d686146d793a8fec86c..3888a07a0cf250d4b89713f33a44e7d1e609bb6d 100644 (file)
@@ -113,7 +113,7 @@ For example, where old scripts have
 .PP
 .in +4n
 .EX
-rm \`find . \-name "*\(ti"\`
+rm \`find . \-name "*\[ti]"\`
 .EE
 .in
 .PP
@@ -121,7 +121,7 @@ new scripts require
 .PP
 .in +4n
 .EX
-rm \-f nosuchfile \`find . \-name "*\(ti"\`
+rm \-f nosuchfile \`find . \-name "*\[ti]"\`
 .EE
 .in
 .PP
index 45ffd7be1d2a2e46ea7bf5ec555703af19ce5c12..dc160e283b222ba0fa74b6c6394787dd26c3a6fb 100644 (file)
@@ -122,7 +122,7 @@ The "postmaster" address is not case sensitive.
 .SH FILES
 .I /etc/aliases
 .br
-.I \(ti/.forward
+.I \[ti]/.forward
 .SH SEE ALSO
 .BR mail (1),
 .BR aliases (5),
index 51b0b1d422b59f241821e275041fcd55a853bc28..6cfd6f25bac970c7259d732020e082839af72c34 100644 (file)
@@ -1104,8 +1104,8 @@ is required, use "\\(ha".
 This is especially necessary in code samples,
 to get a nicely rendered caret when rendering to PDF.
 .PP
-Using a naked "\(ti" character results in a poor rendering in PDF.
-Instead use "\\(ti".
+Using a naked "\[ti]" character results in a poor rendering in PDF.
+Instead use "\\[ti]".
 This is especially necessary in code samples,
 to get a nicely rendered tilde when rendering to PDF.
 .\"
index 83f7bee130f55ed3c8b21d73a914d6cf615aa725..e9ee021b3fea3de64146072ea70d2977eacf3317 100644 (file)
@@ -614,7 +614,7 @@ for (nh = (struct nlmsghdr *) buf; NLMSG_OK (nh, len);
 information about libnetlink
 .UE
 .PP
-.UR http://www.infradead.org\:/\(titgr\:/libnl/
+.UR http://www.infradead.org\:/\[ti]tgr\:/libnl/
 information about libnl
 .UE
 .PP
index 27b24ea152c2d6fb38ea941183fc6d7caaf7a8ee..95d7179b06051914dd9e404d4753dc7c48a69df4 100644 (file)
@@ -25,7 +25,7 @@ lb lb lb
 l l l.
 Operator       Associativity   Notes
 [] () . \-> ++ \-\-    left to right   [1]
-++ \-\- & * + \- \(ti ! sizeof right to left   [2]
+++ \-\- & * + \- \[ti] ! sizeof        right to left   [2]
 (type) right to left
 * / %  left to right
 + \-   left to right
index b8ce7aeab5887515868f28bb58ff2e0d4771ba4f..d2e44c2bbe99556d867def417b639fd6de923145 100644 (file)
@@ -248,7 +248,7 @@ Suffix      File type
 \&.z   File compressed using \fBpack\fP(1) (or an old \fBgzip\fP(1))
 \&.zip \fBzip\fP(1) archive
 \&.zoo \fBzoo\fP(1) archive
-\&\(ti Emacs or \fBpatch\fP(1) backup file
+\&\[ti]        Emacs or \fBpatch\fP(1) backup file
 \&rc   startup (`run control') file, e.g., \fI.newsrc\fP
 .TE
 .SH STANDARDS
index 557660293d42731b2748474d040be86deb268255..2daea58aff4491e3f3c42f1328845fd7725a2069 100644 (file)
@@ -619,7 +619,7 @@ the orphaned connection is reset and a warning is printed.
 This limit exists only to prevent simple denial-of-service attacks.
 Lowering this limit is not recommended.
 Network conditions might require you to increase the number of
-orphans allowed, but note that each orphan can eat up to \(ti64\ kB
+orphans allowed, but note that each orphan can eat up to \[ti]64\ kB
 of unswappable memory.
 The default initial value is set equal to the kernel parameter NR_FILE.
 This initial default is adjusted depending on the memory in the system.
index 1811de98988e38f40f84368765ff6fdc89372621..e0e6ce7aaf0d6fb9b1a5a3b7e4d175bb8a0458d2 100644 (file)
@@ -228,7 +228,7 @@ Unicode Technical Reports.
 .IP \(bu
 Markus Kuhn: UTF-8 and Unicode FAQ for UNIX/Linux.
 .RS
-.UR http://www.cl.cam.ac.uk\:/\(timgk25\:/unicode.html
+.UR http://www.cl.cam.ac.uk\:/\[ti]mgk25\:/unicode.html
 .UE
 .RE
 .IP \(bu
index 7528f771f6a318c3938c639b3c2bcb6371e5c772..01e84287d18c12ee48bb59bbba7c2acb763620bd 100644 (file)
@@ -493,7 +493,7 @@ limited set of punctuation marks and symbols:
 .IP
 .in +4n
 .EX
-\- _ . ! \(ti * ' ( )
+\- _ . ! \[ti] * ' ( )
 .EE
 .in
 .PP
@@ -515,7 +515,7 @@ A URI is always shown in its "escaped" form.
 Unreserved characters can be escaped without changing the semantics
 of the URI, but this should not be done unless the URI is being used
 in a context that does not allow the unescaped character to appear.
-For example, "%7e" is sometimes used instead of "\(ti" in an HTTP URL
+For example, "%7e" is sometimes used instead of "\[ti]" in an HTTP URL
 path, but the two are equivalent for an HTTP URL.
 .PP
 For URIs which must handle characters outside the US ASCII character set,
index 79b06ae7cfbfde3eecf7278be72efc021b9374cc..df71bc91278f5d36f1c591ac009e8186214c5fcb 100644 (file)
@@ -293,7 +293,7 @@ nor
 .q + .
 To allow for future extensions,
 an unquoted name should not contain characters from the set
-.q !$%&'()*,/:;<=>?@[\e]\(ha\`{|}\(ti .
+.q !$%&'()*,/:;<=>?@[\e]\(ha\`{|}\[ti] .
 .TP
 .B FROM
 Gives the first year in which the rule applies.