(server-visit-files): Fix variable name typo.
This commit is contained in:
parent
3c88ae74e3
commit
0582471880
2 changed files with 6 additions and 2 deletions
|
|
@ -1,6 +1,10 @@
|
|||
2001-07-20 Stefan Monnier <monnier@cs.yale.edu>
|
||||
|
||||
* server.el (server-visit-files): Fix variable name typo.
|
||||
|
||||
2001-07-20 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* simple.el (delete-trailing-whitespace): Save match data
|
||||
* simple.el (delete-trailing-whitespace): Save match data
|
||||
around looking-at. From Markus Rost <rost@math.ohio-state.edu>.
|
||||
|
||||
2001-07-19 Stefan Monnier <monnier@cs.yale.edu>
|
||||
|
|
|
|||
|
|
@ -335,7 +335,7 @@ so don't mark these buffers specially, just visit them normally."
|
|||
(goto-line (nth 1 (car files)))
|
||||
(let ((column-number (nth 2 (car files))))
|
||||
(when (> column-number 0)
|
||||
(move-to-column (1- column))))
|
||||
(move-to-column (1- column-number))))
|
||||
(run-hooks 'server-visit-hook)))
|
||||
(if (not nowait)
|
||||
(setq server-buffer-clients
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue