From ae87aeb6414ae6cd7bd63bdcfccedeba973e1acc Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:43:15 +0000 Subject: [PATCH] lilypond-0.0.63 --- Documentation/CodingStyle.pod | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Documentation/CodingStyle.pod b/Documentation/CodingStyle.pod index 4592783fb2..418575cd39 100644 --- a/Documentation/CodingStyle.pod +++ b/Documentation/CodingStyle.pod @@ -45,6 +45,19 @@ extension ".cc". Inline definition files always have the file name extension ".icc". +in emacs: + + (setq auto-mode-alist + (append '(("\\.make$" . makefile-mode) + ("\\.cc$" . c++-mode) + ("\\.icc$" . c++-mode) + ("\\.tcc$" . c++-mode) + ("\\.hh$" . c++-mode) + ("\\.pod$" . text-mode) + ) + auto-mode-alist)) + + =head2 INDENTATION @@ -59,6 +72,7 @@ in emacs: '(lambda() (c-set-style "Stroustrup") ) ) + If you like using font-lock, you can also add this to your F<.emacs>: (setq font-lock-maximum-decoration t) @@ -398,3 +412,13 @@ Variable bar: an C that you must not delete =back Generally default arguments are taboo, except for nil pointers. + +=head1 MISCELLANEOUS + +For some tasks, some scripts are supplied, notably creating patches, a +mirror of the website, generating the header to put over cc and hh +files, doing a release. + +Use them. + + -- 2.39.5