branch: elpa/dart-mode
commit d4da484bce718fd9d9d442d9e4346c0d5c1e06cf
Author: bradyt <[email protected]>
Commit: Natalie Weizenbaum <[email protected]>

    Removes nil c-syntactic-context (#56)
    
    This commit removes `nil`ing `c-syntactic-context` completely, if this 
causes problems, maybe it can be `setq-default` in `defun dart-mode` block, so 
it doesn't affect editing code in other cc modes. Having this non-`nil` may be 
useful for exploring cc with `C-c C-s` as per the manual suggests, considering 
if improving assignment of syntactic symbols somehow, as suggested at `(ccmode) 
Syntactic Symbols`.
---
 dart-mode.el | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/dart-mode.el b/dart-mode.el
index d3e2e78..38aa86e 100644
--- a/dart-mode.el
+++ b/dart-mode.el
@@ -456,9 +456,6 @@ Returns nil if `dart-sdk-path' is nil."
 
 ;;; CC indentation support
 
-(defvar c-syntactic-context nil
-  "A dynamically-bound variable used by cc-mode.")
-
 (defun dart-block-offset (info)
   "Calculate the correct indentation for inline functions.
 

Reply via email to