diff options
| -rw-r--r-- | lisp/progmodes/sql.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 990576667ad..fb33db00681 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el | |||
| @@ -1029,7 +1029,7 @@ This function is used for `comint-input-sender' if using `sql-oracle' on NT." | |||
| 1029 | t t string))) | 1029 | t t string))) |
| 1030 | (comint-send-string proc string) | 1030 | (comint-send-string proc string) |
| 1031 | (if comint-input-sender-no-newline | 1031 | (if comint-input-sender-no-newline |
| 1032 | (if (not (string-equal input "")) | 1032 | (if (not (string-equal string "")) |
| 1033 | (process-send-eof)) | 1033 | (process-send-eof)) |
| 1034 | (comint-send-string proc "\n"))) | 1034 | (comint-send-string proc "\n"))) |
| 1035 | 1035 | ||
| @@ -1050,7 +1050,7 @@ Every newline in STRING will be preceded with a space and a backslash." | |||
| 1050 | (setq result (concat result (substring string start))) | 1050 | (setq result (concat result (substring string start))) |
| 1051 | (comint-send-string proc result) | 1051 | (comint-send-string proc result) |
| 1052 | (if comint-input-sender-no-newline | 1052 | (if comint-input-sender-no-newline |
| 1053 | (if (not (string-equal input "")) | 1053 | (if (not (string-equal string "")) |
| 1054 | (process-send-eof)) | 1054 | (process-send-eof)) |
| 1055 | (comint-send-string proc "\n")))) | 1055 | (comint-send-string proc "\n")))) |
| 1056 | 1056 | ||