annotate admin/notes/cpp @ 104626:caa79498564a
* subr.el (default-mode-line-format, default-header-line-format)
(default-line-spacing, default-abbrev-mode, default-ctl-arrow)
(default-direction-reversed, default-truncate-lines)
(default-left-margin, default-tab-width, default-case-fold-search)
(default-left-margin-width, default-right-margin-width)
(default-left-fringe-width, default-right-fringe-width)
(default-fringes-outside-margins, default-scroll-bar-width)
(default-vertical-scroll-bar, default-indicate-empty-lines)
(default-indicate-buffer-boundaries, default-fringe-indicator-alist)
(default-fringe-cursor-alist, default-scroll-up-aggressively)
(default-scroll-down-aggressively, default-fill-column)
(default-cursor-type, default-buffer-file-type)
(default-cursor-in-non-selected-windows)
(default-buffer-file-coding-system, default-major-mode)
(default-enable-multibyte-characters): Mark as obsolete.
* cus-start.el (default-major-mode): Customize `major-mode' instead.
(enable-multibyte-characters): Not customizable any more.
| author |
Stefan Monnier <monnier@iro.umontreal.ca> |
| date |
Thu, 27 Aug 2009 04:24:00 +0000 |
| parents |
c3512b2085a0 |
| children |
b246058e9b05 |
| rev |
line source |
|
50518
|
1 ttn 2003-04-09
|
|
|
2
|
|
|
3 we use a C preprocesor not only in the normal compilation of .c files
|
|
|
4 into object files, but also for creating
|
|
|
5
|
|
|
6 src/Makefile
|
|
|
7 lib-src/Makefile
|
|
|
8
|
|
|
9 (delimited by comment "start of cpp stuff"). some cpp implementations
|
|
97142
|
10 insert whitespace in between tokens.
|
|
50518
|
11
|
|
|
12 during makefile creation, the preprocessor symbol NOT_C_CODE is defined.
|
|
|
13 this should not be defined for normal .c file compilation.
|
|
|
14
|
|
|
15 there has been discussion on eliminating this use of cpp and relying
|
|
|
16 solely on autoconf processing. rms says to leave it be.
|
|
52401
|
17
|
|
|
18 ;;; arch-tag: d654291e-9fc8-41b7-ab0c-d3cde842a8e0
|