]> git.eshelyaron.com Git - emacs.git/commitdiff
* eudc.texi: Unquote setopt option names
authorPhilip Kaludercic <philipk@posteo.net>
Mon, 18 Jul 2022 20:44:52 +0000 (22:44 +0200)
committerThomas Fitzsimmons <fitzsim@fitzsim.org>
Tue, 19 Jul 2022 15:05:52 +0000 (11:05 -0400)
doc/misc/eudc.texi

index 4c1adf3b0ffa05fb0619e441bddb2e1c5ece8fb2..0037ba78d3b5350af7ca13d5ba5d1e2844afdc51 100644 (file)
@@ -292,7 +292,7 @@ LDAP:
 (setopt eudc-server-hotlist
         '(("" . bbdb)
           ("ldaps://ldap.gnu.org" . ldap)))
-(setopt 'ldap-host-parameters-alist
+(setopt ldap-host-parameters-alist
         '(("ldaps://ldap.gnu.org"
                   base "ou=people,dc=gnu,dc=org"
                   binddn "gnu\\emacsuser"
@@ -346,10 +346,10 @@ configure EUDC for LDAP:
 @lisp
 (with-eval-after-load "message"
   (define-key message-mode-map (kbd "TAB") 'eudc-expand-try-all))
-(setopt 'eudc-server-hotlist
+(setopt eudc-server-hotlist
         '(("" . bbdb)
           ("ldaps://ldap.gnu.org" . ldap)))
-(setopt 'ldap-host-parameters-alist
+(setopt ldap-host-parameters-alist
         '(("ldaps://ldap.gnu.org"
                   auth-source t)))
 @end lisp
@@ -376,9 +376,9 @@ and the @file{.emacs} expressions become:
 @lisp
 (with-eval-after-load "message"
   (define-key message-mode-map (kbd "TAB") 'eudc-expand-try-all))
-(setopt 'eudc-server-hotlist
+(setopt eudc-server-hotlist
         '(("" . bbdb) ("" . ldap)))
-(setopt 'ldap-host-parameters-alist
+(setopt ldap-host-parameters-alist
         '(("" auth-source t)))
 @end lisp