Variable: buffer-auto-save-file-name

buffer-auto-save-file-name is a buffer-local variable defined in buffer.c.

Documentation

Name of file for auto-saving current buffer.

If it is nil, that means don't auto-save this buffer.

View in manual

Source Code

// Defined in /usr/src/emacs/src/buffer.c
  DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
		     &BVAR (current_buffer, auto_save_file_name),
		     Qstringp,
		     doc: /* Name of file for auto-saving current buffer.
If it is nil, that means don't auto-save this buffer.  */);