aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/sql.el
diff options
context:
space:
mode:
authorStefan Kangas2023-08-24 22:07:44 +0200
committerStefan Kangas2023-08-24 22:07:44 +0200
commitbc69d216c7f7e1bd7562d72bcdb6ffc497287af8 (patch)
treeefbb8676a1dc682065a8abaf326ccbb1b739c067 /lisp/progmodes/sql.el
parent3907c884f03cf5f2a09696bda015b1060c7111ba (diff)
downloademacs-bc69d216c7f7e1bd7562d72bcdb6ffc497287af8.tar.gz
emacs-bc69d216c7f7e1bd7562d72bcdb6ffc497287af8.zip
Modernize sql-postgres-options docstring
* lisp/progmodes/sql.el (sql-postgres-options): Don't refer to ancient versions of PostgreSQL released in 1999 and 2001, respectively.
Diffstat (limited to 'lisp/progmodes/sql.el')
-rw-r--r--lisp/progmodes/sql.el11
1 files changed, 5 insertions, 6 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index 61c8525b77a..25eaab060c5 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -1191,12 +1191,11 @@ Starts `sql-interactive-mode' after doing some setup."
1191 1191
1192(defcustom sql-postgres-options '("-P" "pager=off") 1192(defcustom sql-postgres-options '("-P" "pager=off")
1193 "List of additional options for `sql-postgres-program'. 1193 "List of additional options for `sql-postgres-program'.
1194The default setting includes the -P option which breaks older versions 1194The default -P option is equivalent to the --pset option. If you
1195of the psql client (such as version 6.5.3). The -P option is equivalent 1195want psql to prompt you for a user name, add the string \"-u\" to
1196to the --pset option. If you want the psql to prompt you for a user 1196the list of options. If you want to provide a user name on the
1197name, add the string \"-u\" to the list of options. If you want to 1197command line, add your name with a \"-U\" prefix (such as
1198provide a user name on the command line (newer versions such as 7.1), 1198\"-Umark\") to the list."
1199add your name with a \"-U\" prefix (such as \"-Umark\") to the list."
1200 :type '(repeat string) 1199 :type '(repeat string)
1201 :version "20.8") 1200 :version "20.8")
1202 1201