Skip to content

Instantly share code, notes, and snippets.

@jordonbiondo
Created July 23, 2013 19:20
Show Gist options
  • Save jordonbiondo/6065327 to your computer and use it in GitHub Desktop.
Save jordonbiondo/6065327 to your computer and use it in GitHub Desktop.
turn off modification warnings
(defadvice ask-user-about-supersession-threat (around turn-it-off activate)
t)
(defadvice verify-visited-file-modtime (after turn-it-off activate)
(setq ad-return-value t))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment