(write-abbrev-file): Don't hardcode point-min == 1.
This commit is contained in:
parent
4d927d8475
commit
3004cff449
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue