Add Unicode strings and symbols
[bpt/guile.git] / libguile / vm-engine.h
index c0f772f..240969c 100644 (file)
@@ -336,6 +336,7 @@ do {                                                \
 
 #define FETCH()                (*ip++)
 #define FETCH_LENGTH(len) do { len=*ip++; len<<=8; len+=*ip++; len<<=8; len+=*ip++; } while (0)
+#define FETCH_WIDTH(width) do { width=*ip++; } while (0)
 
 #undef CLOCK
 #if VM_USE_CLOCK