diff options
Diffstat (limited to 'utils/clang-completion-mode.el')
-rw-r--r-- | utils/clang-completion-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/clang-completion-mode.el b/utils/clang-completion-mode.el index 873127f..36d8181 100644 --- a/utils/clang-completion-mode.el +++ b/utils/clang-completion-mode.el @@ -53,10 +53,10 @@ :group 'clang-completion-mode) ;;; Extra compilation flags to pass to clang. -(defcustom clang-flags "" +(defcustom clang-flags nil "Extra flags to pass to the Clang executable. This variable will typically contain include paths, e.g., -I~/MyProject." - :type 'string + :type '(repeat (string :tag "Argument" "")) :group 'clang-completion-mode) ;;; The prefix header to use with Clang code completion. |