diff options
| author | Lars Ingebrigtsen | 2011-02-04 12:26:36 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2011-02-04 12:26:36 +0000 |
| commit | 984ef96d31f8de836c8089ef4f33849a0af970ca (patch) | |
| tree | 85b6f1b8519b4313e063856a10f07b244d7ac79c | |
| parent | be50df37a3ba3012cbde1a0d1ac3675ce9f5a16e (diff) | |
| download | emacs-984ef96d31f8de836c8089ef4f33849a0af970ca.tar.gz emacs-984ef96d31f8de836c8089ef4f33849a0af970ca.zip | |
Doc fix.
| -rw-r--r-- | lisp/net/dns.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/dns.el b/lisp/net/dns.el index 77a194ec436..3c1bd54acfd 100644 --- a/lisp/net/dns.el +++ b/lisp/net/dns.el | |||
| @@ -252,8 +252,8 @@ If TCP-P, the first two bytes of the package with be the length field." | |||
| 252 | (nreverse spec)))) | 252 | (nreverse spec)))) |
| 253 | 253 | ||
| 254 | (defun dns-read-int32 () | 254 | (defun dns-read-int32 () |
| 255 | ;; Full 32 bit Integers can't be handled by Emacs. If we use | 255 | ;; Full 32 bit Integers can't be handled by 32-bit Emacsen. If we |
| 256 | ;; floats, it works. | 256 | ;; use floats, it works. |
| 257 | (format "%.0f" (+ (* (dns-read-bytes 1) 16777216.0) | 257 | (format "%.0f" (+ (* (dns-read-bytes 1) 16777216.0) |
| 258 | (dns-read-bytes 3)))) | 258 | (dns-read-bytes 3)))) |
| 259 | 259 | ||