diff options
| author | Dmitry Gutov | 2014-12-18 15:51:34 +0200 |
|---|---|---|
| committer | Dmitry Gutov | 2014-12-18 15:51:34 +0200 |
| commit | 687ae680bd12b0353e313808253e7a07c0828ebe (patch) | |
| tree | fb429da2f1ef2db0494ad1c3fe84e06bf572d308 | |
| parent | af1040b3f4ec4dbf714a532846b9639abcddb105 (diff) | |
| download | emacs-687ae680bd12b0353e313808253e7a07c0828ebe.tar.gz emacs-687ae680bd12b0353e313808253e7a07c0828ebe.zip | |
Remove extra semicolons
| -rw-r--r-- | lisp/vc/vc-svn.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el index f477b394a17..5c87cab2d92 100644 --- a/lisp/vc/vc-svn.el +++ b/lisp/vc/vc-svn.el | |||
| @@ -206,7 +206,7 @@ If you want to force an empty list of arguments, use t." | |||
| 206 | "Run 'svn status' for DIR and update BUFFER via CALLBACK. | 206 | "Run 'svn status' for DIR and update BUFFER via CALLBACK. |
| 207 | CALLBACK is called as (CALLBACK RESULT BUFFER), where | 207 | CALLBACK is called as (CALLBACK RESULT BUFFER), where |
| 208 | RESULT is a list of conses (FILE . STATE) for directory DIR." | 208 | RESULT is a list of conses (FILE . STATE) for directory DIR." |
| 209 | ;; ;; FIXME shouldn't this rather default to all the files in dir? | 209 | ;; FIXME shouldn't this rather default to all the files in dir? |
| 210 | (apply #'vc-svn-command (current-buffer) 'async nil "status" "-u" files) | 210 | (apply #'vc-svn-command (current-buffer) 'async nil "status" "-u" files) |
| 211 | (vc-run-delayed (vc-svn-after-dir-status callback))) | 211 | (vc-run-delayed (vc-svn-after-dir-status callback))) |
| 212 | 212 | ||