]> code.delx.au - gnu-emacs-elpa/commitdiff
Marked up 'nil' throughout
authorPhil Hudson <phil.hudson@iname.com>
Thu, 6 Nov 2014 10:07:19 +0000 (10:07 +0000)
committerPhil Hudson <phil.hudson@iname.com>
Thu, 6 Nov 2014 10:07:19 +0000 (10:07 +0000)
README.md

index 6c3c7dff764a82f11bf7af5371a636e63085d485..dbeeb74f3c92ed983a64e1a21e52032eecc4e0cd 100644 (file)
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ done, the return value is passed to FINISH-FUNC.  Example:
        (lambda (result)
          (message "Async process done, result should be 222: %s" result)))
              
-If FINISH-FUNC is nil or missing, a future is returned that can be inspected
+If FINISH-FUNC is `nil` or missing, a future is returned that can be inspected
 using `async-get`, blocking until the value is ready.  Example:
 
     (let ((proc (async-start
@@ -68,7 +68,7 @@ hanging around):
 
 Note: Even when FINISH-FUNC is present, a future is still returned except that
 it yields no value (since the value is passed to FINISH-FUNC).  Calling
-`async-get` on such a future always returns nil.  It can still be useful,
+`async-get` on such a future always returns `nil`.  It can still be useful,
 however, as an argument to `async-ready` or `async-wait`.
 
 ## async-start-process
@@ -77,7 +77,7 @@ however, as an argument to `async-ready` or `async-wait`.
     
 Start the executable PROGRAM asynchronously.  See `async-start`.  PROGRAM is
 passed PROGRAM-ARGS, calling FINISH-FUNC with the process object when done.
-If FINISH-FUNC is nil, the future object will return the process object when
+If FINISH-FUNC is `nil`, the future object will return the process object when
 the program is finished.
 
 ## async-get
@@ -86,7 +86,7 @@ the program is finished.
     
 Get the value from an asynchronously function when it is ready.  FUTURE is
 returned by `async-start` or `async-start-process` when its FINISH-FUNC is
-nil.
+`nil`.
 
 ## async-ready