Variable: expand-c-sample-expand-list

expand-c-sample-expand-list is a variable defined in expand.el.gz.

Value

(("if" "if () {\n \n} else {\n \n}"
  (5 10 21))
 ("ifn" "if () {}"
  (5 8))
 ("uns" "unsigned ")
 ("for" expand-c-for-skeleton)
 ("switch" "switch () {\n\n}"
  (9 13))
 ("case" "case :\n\nbreak;\n"
  (6 8 16))
 ("do" "do {\n\n} while ();"
  (6 16))
 ("while" "while () {\n\n}"
  (8 12))
 ("default" "default:\n\nbreak;" 10)
 ("main" "int\nmain(int argc, char * argv[])\n{\n\n}\n" 37))

Documentation

Expansions for C mode. See expand-add-abbrevs.

Source Code

;; Defined in /usr/src/emacs/lisp/expand.el.gz
(defconst expand-c-sample-expand-list
  '(("if" "if () {\n \n} else {\n \n}" (5 10 21))
    ("ifn" "if () {}" (5 8))
    ("uns" "unsigned ")
    ("for" expand-c-for-skeleton)
    ("switch" "switch () {\n\n}" (9 13))
    ("case" "case :\n\nbreak;\n" (6 8 16))
    ("do" "do {\n\n} while ();" (6 16))
    ("while" "while () {\n\n}" (8 12))
    ("default" "default:\n\nbreak;" 10)
    ("main" "int\nmain(int argc, char * argv[])\n{\n\n}\n" 37))
  "Expansions for C mode.  See `expand-add-abbrevs'.")