diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-12-22 16:40:46 +0000 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-12-22 16:40:46 +0000 |
| commit | 94e9d9febdb3c68f94bcff26002311fa464837df (patch) | |
| tree | 3a855c552ff4049052ef3cf9dc7c2f68cee7e03e /man3/queue.3 | |
| parent | 009df872f730972ec53a70652959c7b47c7ece8b (diff) | |
| download | man-pages-94e9d9febdb3c68f94bcff26002311fa464837df.tar.gz | |
Replace "-" by "\-" where a real dash is required.
Diffstat (limited to 'man3/queue.3')
| -rw-r--r-- | man3/queue.3 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/man3/queue.3 b/man3/queue.3 index 043c19bd72..84b28ee1a9 100644 --- a/man3/queue.3 +++ b/man3/queue.3 @@ -343,8 +343,8 @@ TAILQ_INSERT_TAIL(&head, n1, entries); n2 = malloc(sizeof(struct entry)); /* Insert after. */ TAILQ_INSERT_AFTER(&head, n1, n2, entries); /* Forward traversal. */ -for (np = head.tqh_first; np != NULL; np = np->entries.tqe_next) - np-> ... +for (np = head.tqh_first; np != NULL; np = np\->entries.tqe_next) + np\-> ... /* Delete. */ while (head.tqh_first != NULL) TAILQ_REMOVE(&head, head.tqh_first, entries); @@ -455,11 +455,11 @@ n2 = malloc(sizeof(struct entry)); /* Insert before. */ CIRCLEQ_INSERT_BEFORE(&head, n1, n2, entries); /* Forward traversal. */ for (np = head.cqh_first; np != (void *)&head; - np = np->entries.cqe_next) - np-> ... + np = np\->entries.cqe_next) + np\-> ... /* Reverse traversal. */ -for (np = head.cqh_last; np != (void *)&head; np = np->entries.cqe_prev) - np-> ... +for (np = head.cqh_last; np != (void *)&head; np = np\->entries.cqe_prev) + np\-> ... /* Delete. */ while (head.cqh_first != (void *)&head) CIRCLEQ_REMOVE(&head, head.cqh_first, entries); |
