]> git.eshelyaron.com Git - emacs.git/commitdiff
; Small comment fix
authorPhilipp Stephani <phst@google.com>
Sun, 4 Jun 2017 17:15:20 +0000 (19:15 +0200)
committerPhilipp Stephani <phst@google.com>
Sun, 4 Jun 2017 17:50:50 +0000 (19:50 +0200)
* emacs-module.c (MODULE_FUNCTION_BEGIN): Don't say that the error
value should be a sentinel value, because in almost all cases it
isn't.

src/emacs-module.c

index c276edab37b1d8233a3546a020a7d9361abca45e..7f5bd86c96bff8051f041c1df9747b02fdb15b35 100644 (file)
@@ -226,7 +226,7 @@ static emacs_value const module_nil = 0;
 
 /* Use MODULE_FUNCTION_BEGIN to implement steps 2 through 4 for most
    environment functions.  On error it will return its argument, which
-   should be a sentinel value.  */
+   can be a sentinel value.  */
 
 #define MODULE_FUNCTION_BEGIN(error_retval)      \
   MODULE_FUNCTION_BEGIN_NO_CATCH (error_retval); \