diff options
| author | Michael Albinus | 2005-10-30 19:58:40 +0000 |
|---|---|---|
| committer | Michael Albinus | 2005-10-30 19:58:40 +0000 |
| commit | 55880756f19c0faf0f8aed4b6627a7b3e25c0b1a (patch) | |
| tree | 189ccfa4db47adad1b7b5265fa4619959c34d867 | |
| parent | b43fa134185c3e38964a61006b1c7e1c5e9c9fd8 (diff) | |
| download | emacs-55880756f19c0faf0f8aed4b6627a7b3e25c0b1a.tar.gz emacs-55880756f19c0faf0f8aed4b6627a7b3e25c0b1a.zip | |
* net/tramp.el (tramp-chunksize): Escape parentheses in docstring
starting at beginning of line. Fontification is messed up when
`open-paren-in-column-0-is-defun-start' set to t. Reported
by John Paul Wallington <jpw@pobox.com>.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/net/tramp.el | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2c7d1adb978..f70d37ef25b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2005-10-30 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp.el (tramp-chunksize): Escape parentheses in docstring | ||
| 4 | starting at beginning of line. Fontification is messed up when | ||
| 5 | `open-paren-in-column-0-is-defun-start' set to t. Reported | ||
| 6 | by John Paul Wallington <jpw@pobox.com>. | ||
| 7 | |||
| 1 | 2005-10-30 Luc Teirlinck <teirllm@auburn.edu> | 8 | 2005-10-30 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 9 | ||
| 3 | * comint.el (comint-send-input): Call `comint-update-fence' when | 10 | * comint.el (comint-send-input): Call `comint-update-fence' when |
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 545fa9e94b1..5dc1356c6d2 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -1358,6 +1358,9 @@ autocorrect\" to the remote host." | |||
| 1358 | (when (and (not (featurep 'xemacs)) | 1358 | (when (and (not (featurep 'xemacs)) |
| 1359 | (memq system-type '(hpux))) | 1359 | (memq system-type '(hpux))) |
| 1360 | 500) | 1360 | 500) |
| 1361 | ;; Parentheses in docstring starting at beginning of line are escaped. | ||
| 1362 | ;; Fontification is messed up when | ||
| 1363 | ;; `open-paren-in-column-0-is-defun-start' set to t. | ||
| 1361 | "*If non-nil, chunksize for sending input to local process. | 1364 | "*If non-nil, chunksize for sending input to local process. |
| 1362 | It is necessary only on systems which have a buggy `process-send-string' | 1365 | It is necessary only on systems which have a buggy `process-send-string' |
| 1363 | implementation. The necessity, whether this variable must be set, can be | 1366 | implementation. The necessity, whether this variable must be set, can be |
| @@ -1392,7 +1395,7 @@ checked via the following code: | |||
| 1392 | (sit-for 30)))) | 1395 | (sit-for 30)))) |
| 1393 | 1396 | ||
| 1394 | In the Emacs normally running Tramp, evaluate the above code | 1397 | In the Emacs normally running Tramp, evaluate the above code |
| 1395 | (replace \"xxx\" and \"yyy\" by the remote user and host name, | 1398 | \(replace \"xxx\" and \"yyy\" by the remote user and host name, |
| 1396 | respectively). You can do this, for example, by pasting it into | 1399 | respectively). You can do this, for example, by pasting it into |
| 1397 | the `*scratch*' buffer and then hitting C-j with the cursor after the | 1400 | the `*scratch*' buffer and then hitting C-j with the cursor after the |
| 1398 | last closing parenthesis. Note that it works only if you have configured | 1401 | last closing parenthesis. Note that it works only if you have configured |
| @@ -1409,7 +1412,7 @@ in the third line of the code. | |||
| 1409 | 1412 | ||
| 1410 | When it is necessary to set `tramp-chunksize', you might consider to | 1413 | When it is necessary to set `tramp-chunksize', you might consider to |
| 1411 | use an out-of-the-band method (like \"scp\") instead of an internal one | 1414 | use an out-of-the-band method (like \"scp\") instead of an internal one |
| 1412 | (like \"ssh\"), because setting `tramp-chunksize' to non-nil decreases | 1415 | \(like \"ssh\"), because setting `tramp-chunksize' to non-nil decreases |
| 1413 | performance. | 1416 | performance. |
| 1414 | 1417 | ||
| 1415 | Please raise a bug report via \"M-x tramp-bug\" if your system needs | 1418 | Please raise a bug report via \"M-x tramp-bug\" if your system needs |