diff --git a/module.pmod.in b/module.pmod.in
index 0bcc451775223d55cf7956f8635df383e9835476..6dd11947db433cdd2394c852265d9a73fc5e52a1 100644
--- a/module.pmod.in
+++ b/module.pmod.in
@@ -32,11 +32,11 @@ class SCSS
   //!    See also @[set_source_map_file()].
   //!   @member bool "source_comments"
   //!    Turn on/off comments in the output containing info about the source
-  //!    file - line numbers and such. Default of @code{false@}. See also
+  //!    file - line numbers and such. Default of @tt{false@}. See also
   //!    @[set_source_comments()].
   //!   @member bool "source_map_embed"
   //!    Turn on/off if a source map should be embedded in the output or not.
-  //!    Default is @code{false@}. See also @[set_source_map_embed()].
+  //!    Default is @tt{false@}. See also @[set_source_map_embed()].
   //!  @endmapping
   void set_options(mapping(string:string|int) opts)
   {
diff --git a/sass.cmod b/sass.cmod
index 81d51b8345e7d01f1728c56d03c60fb868e242bd..961506097e67e86bf779c240791c4ac2a3c5ab1a 100644
--- a/sass.cmod
+++ b/sass.cmod
@@ -32,7 +32,7 @@ DECLARATIONS
 #ifdef SASS_DEBUG
 # define SASS_TRACE(X...) printf ("# " X)
 #else
-# define SASS_TRACE(X...) 0
+# define SASS_TRACE(X...)
 #endif
 
 typedef struct sass_opts {
@@ -67,7 +67,7 @@ void set_options (sass_opts *opts, struct Sass_Context *ctx)
 
   if (opts->map_path != NULL) {
     sass_option_set_source_map_file (s_opts, opts->map_path);
-    // sass_option_set_omit_source_map_url (s_opts, false);
+    sass_option_set_omit_source_map_url (s_opts, false);
     sass_option_set_source_map_contents (s_opts, true);
   }
   else {
@@ -86,7 +86,7 @@ PIKECLASS _Api
 
   /*! @decl void set_include_path(string path)
    *!
-   *! Set include path of @code{@imports@}
+   *! Set include path of @tt{@imports@}
    *!
    *! @seealso
    *!  get_include_path()
@@ -106,7 +106,7 @@ PIKECLASS _Api
 
   /*! @decl string get_include_path()
    *!
-   *! Get include path of @code{@imports@}
+   *! Get include path of @tt{@imports@}
    *!
    *! @seealso
    *!  set_include_path()
@@ -155,7 +155,7 @@ PIKECLASS _Api
   /*! @decl void set_source_comments(bool set)
    *!
    *! Emit comments in the generated CSS indicating the corresponding
-   *! source line. Default is @code{false@}.
+   *! source line. Default is @tt{false@}.
    *!
    *! @seealso
    *!  @[get_source_comments()]