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. 


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to