1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

Remove misplaced tabs from the manual.

* doc/ref/posix.texi (Network Databases): Remove tabs from `getaddrinfo'
  example.

* .dir-locals.el: Set `indent-tabs-mode' to `t' for `texinfo-mode'.
This commit is contained in:
Ludovic Courtès 2010-02-17 00:31:04 +01:00
parent a104b81cc4
commit d2add8ae11
2 changed files with 3 additions and 2 deletions

View file

@ -4,4 +4,5 @@
(tab-width . 8)))
(c-mode . ((c-file-style . "gnu")))
(scheme-mode . ((indent-tabs-mode . nil)))
(emacs-lisp-mode . ((indent-tabs-mode . nil))))
(emacs-lisp-mode . ((indent-tabs-mode . nil)))
(texinfo-mode . ((indent-tabs-mode . nil))))

View file

@ -2355,7 +2355,7 @@ which to address the specified service.
@example
(let* ((ai (car (getaddrinfo "www.gnu.org" "http")))
(s (socket (addrinfo:fam ai) (addrinfo:socktype ai)
(addrinfo:protocol ai))))
(addrinfo:protocol ai))))
(connect s (addrinfo:addr ai))
s)
@end example