summaryrefslogtreecommitdiff
path: root/lisp/progmodes/sql.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1999-04-08 01:42:50 +0000
committerRichard M. Stallman <rms@gnu.org>1999-04-08 01:42:50 +0000
commite5a3d64826b2c97bba560620c02ee553a3b7a5d6 (patch)
treef8b4f4e7cdcfa0838e2270ec8eb881995abf7e9b /lisp/progmodes/sql.el
parente0a816503cc6229db1209aaa2b0dc8d775892c9b (diff)
downloademacs-e5a3d64826b2c97bba560620c02ee553a3b7a5d6.tar.gz
(sql-send-paragraph): Delete duplicate definition.
Diffstat (limited to 'lisp/progmodes/sql.el')
-rw-r--r--lisp/progmodes/sql.el11
1 files changed, 0 insertions, 11 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index d16e9fb1f29..f1e66cbbd38 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -812,17 +812,6 @@ Inserts SELECT or commas if appropriate."
(point))))
(sql-send-region start end)))
-(defun sql-send-paragraph ()
- "Send the current paragraph to the SQL process."
- (interactive)
- (let ((start (save-excursion
- (backward-paragraph)
- (point)))
- (end (save-excursion
- (forward-paragraph)
- (point))))
- (sql-send-region start end)))
-
(defun sql-send-buffer ()
"Send the buffer contents to the SQL process."
(interactive)