From 1d6fad2a8e174d9dbe43a339c07d5b7ce76ad76c Mon Sep 17 00:00:00 2001 From: Stelian Ionescu Date: Tue, 25 May 2010 13:07:18 +0800 Subject: [PATCH] Remove UTF-8 characters from sources --- src/os/os-unix.lisp | 2 +- src/sockets/base-sockets.lisp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/os/os-unix.lisp b/src/os/os-unix.lisp index 498c9a0..428bc62 100644 --- a/src/os/os-unix.lisp +++ b/src/os/os-unix.lisp @@ -180,7 +180,7 @@ is not a directory." "Returns an absolute file-path corresponding to PATHSPEC by merging it with DEFAULT, and (CURRENT-DIRECTORY) if necessary. If CANONICALIZE is non-NIL, the path is canonicalised: if it is :STRIP-DOTS, -then just remove «.» and «..», otherwise symlinks are resolved too." +then just remove \".\" and \"..\", otherwise symlinks are resolved too." (let ((absolute-file-path (absolute-file-path pathspec defaults))) (case canonicalize ((nil) absolute-file-path) diff --git a/src/sockets/base-sockets.lisp b/src/sockets/base-sockets.lisp index c2a5b03..91e6fe5 100644 --- a/src/sockets/base-sockets.lisp +++ b/src/sockets/base-sockets.lisp @@ -120,7 +120,7 @@ Works only on LOCAL sockets.")) (defgeneric socket-option (socket option-name) (:documentation "Returns the value(s) of OS option OPTION-NAME on SOCKET. -For a complete list of supported options see «iolib.sockets/socket-options.lisp».")) +For a complete list of supported options see src/sockets/socket-options.lisp.")) (defclass stream-socket (socket) () (:default-initargs :type :stream) -- 2.11.4.GIT