Changeset 32873

Show
Ignore:
Timestamp:
04/28/09 08:35:25 (4 years ago)
Author:
nishio
Message:

TABでインデントした際に半角スペースを挟むようにした

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/elisp/taskpaper/branches/nishio/taskpaper.el

    r32865 r32873  
    159159 
    160160(add-to-list 'auto-mode-alist (cons "\\.taskpaper$" 'taskpaper-mode)) 
    161 (add-to-list 'auto-mode-alist (cons "test.txt$" 'taskpaper-mode)) ; for test 
    162161 
    163162;; Commands 
     
    209208      (re-search-forward "-+" nil t) 
    210209      (setq indent (- (match-end 0) (match-beginning 0)))) 
    211     (insert (make-string indent ?-)))) 
     210    (insert (make-string indent ?-)) 
     211    (insert " "))) 
    212212 
    213213(provide 'taskpaper)