We Recommend

An Introduction to R An Introduction to R
This tutorial manual provides a comprehensive introduction to R, a software package for statistical computing and graphics. R supports a wide range of statistical techniques, and is easily extensible via user-defined functions written in its own language, or using dynamically loaded modules written in C, C++ or Fortran. One of R's strengths is the ease with which well-designed publication-quality plots can be produced.


Posted By

noah on 06/02/07


Tagged

backup emacs logging versioning


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

melling


Make numbered backups


Published in: Emacs Lisp 


  1. ;;;Make Numbered Backups of Files
  2. (setq version-control t)
  3. ;;;Don't ask when deleting old backups
  4. (setq delete-old-versions t)
  5. ;;;Number of Numbered Backups to Keep
  6. ;;;Delete Oldest Version First
  7. (setq kept-old-versions 50)
  8. (setq kept-new-versions 50)

Report this snippet 

You need to login to post a comment.