]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change
authorPo Lu <luangruo@yahoo.com>
Sat, 30 Sep 2023 00:30:59 +0000 (08:30 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 30 Sep 2023 00:30:59 +0000 (08:30 +0800)
* src/search.c (Fre__describe_compiled): Correct typos and
pointer signedness missmatch.

src/search.c

index 014fd97d42313edc413618ae6183972f97e7a3c3..e9b29bb71793b7b07558b5eb4eae7fb1a1dc058b 100644 (file)
@@ -3391,13 +3391,13 @@ If RAW is non-nil, just return the actual bytecode.  */)
                        !NILP (BVAR (current_buffer,
                                     enable_multibyte_characters)));
   if (!NILP (raw))
-    return make_unibyte_string (cache_entry->buf.buffer,
+    return make_unibyte_string ((char *) cache_entry->buf.buffer,
                                 cache_entry->buf.used);
   else
     {                           /* FIXME: Why ENABLE_CHECKING?  */
-#if !ENABLE_CHECKING
+#if !defined ENABLE_CHECKING
       error ("Not available: rebuild with --enable-checking");
-#elsif HAVE_OPEN_MEMSTREAM
+#elif HAVE_OPEN_MEMSTREAM
       char *buffer = NULL;
       size_t size = 0;
       FILE* f = open_memstream (&buffer, &size);
@@ -3410,10 +3410,10 @@ If RAW is non-nil, just return the actual bytecode.  */)
       Lisp_Object description = make_unibyte_string (buffer, size);
       free (buffer);
       return description;
-#else
+#else /* ENABLE_CHECKING && !HAVE_OPEN_MEMSTREAM */
       print_compiled_pattern (stderr, &cache_entry->buf);
       return build_string ("Description was sent to standard error");
-#endif
+#endif /* !ENABLE_CHECKING */
     }
 }
 \f