]> code.delx.au - gnu-emacs/blobdiff - src/buffer.c
Remove now-inaccurate bytecode comments
[gnu-emacs] / src / buffer.c
index b4b83043f36d2c1733c709236caf9881c5c9d11f..8756cbbbd7d8e79c22bd51feea44856bfc8e4df3 100644 (file)
@@ -1984,7 +1984,9 @@ the current buffer's major mode.  */)
        function = BVAR (current_buffer, major_mode);
     }
 
-  if (NILP (function) || EQ (function, Qfundamental_mode))
+  if (NILP (function)) /* If function is `fundamental-mode', allow it to run
+                          so that `run-mode-hooks' and thus
+                          `hack-local-variables' get run. */
     return Qnil;
 
   count = SPECPDL_INDEX ();