diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-09-25 15:38:53 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-09-25 15:38:53 +0200 |
commit | c27096296f97c86a05b0ffb099172cefe92b89f7 (patch) | |
tree | 2bf78159a9595a5cebc0b96fadb7ae0de70c7ac5 | |
parent | a9ad0bbf14db51d44ad787892cc85eb9ebc397e7 (diff) | |
download | emacs-c27096296f97c86a05b0ffb099172cefe92b89f7.tar.gz emacs-c27096296f97c86a05b0ffb099172cefe92b89f7.tar.bz2 emacs-c27096296f97c86a05b0ffb099172cefe92b89f7.zip |
Fix a defcustom type in gdb-mi.el
* lisp/progmodes/gdb-mi.el (gdb-display-source-buffer-action): Fix
defcustom type to match the value.
-rw-r--r-- | lisp/progmodes/gdb-mi.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el index c71574ec3c6..086f0b6a085 100644 --- a/lisp/progmodes/gdb-mi.el +++ b/lisp/progmodes/gdb-mi.el @@ -650,7 +650,7 @@ Note that this variable only takes effect when variable (defcustom gdb-display-source-buffer-action '(nil . ((inhibit-same-window . t))) "`display-buffer' action used when GDB displays a source buffer." - :type 'list + :type 'sexp :group 'gdb :version "28.1") |