[cfe-commits] r121771 - /cfe/trunk/utils/clang-completion-mode.el
Douglas Gregor
dgregor at apple.com
Tue Dec 14 08:52:29 PST 2010
Author: dgregor
Date: Tue Dec 14 10:52:29 2010
New Revision: 121771
URL: http://llvm.org/viewvc/llvm-project?rev=121771&view=rev
Log:
Minor fix for clang-completion-mode, from Dve Abrahams
Modified:
cfe/trunk/utils/clang-completion-mode.el
Modified: cfe/trunk/utils/clang-completion-mode.el
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/clang-completion-mode.el?rev=121771&r1=121770&r2=121771&view=diff
==============================================================================
--- cfe/trunk/utils/clang-completion-mode.el (original)
+++ cfe/trunk/utils/clang-completion-mode.el Tue Dec 14 10:52:29 2010
@@ -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.
More information about the cfe-commits
mailing list