(write-abbrev-file): Don't hardcode point-min == 1.

This commit is contained in:
Stefan Monnier 2002-09-27 19:51:58 +00:00
parent 4d927d8475
commit 3004cff449

View file

@ -219,7 +219,7 @@ The argument FILE is the file name to write."
(while tables
(insert-abbrev-table-description (car tables) nil)
(setq tables (cdr tables))))
(write-region 1 (point-max) file)
(write-region (point-min) (point-max) file)
(erase-buffer)))
(defun add-mode-abbrev (arg)