Mercurial > emacs
annotate admin/notes/iftc @ 110034:c87f89486bb7
Use `declare' in defmacros.
* lisp/window.el (save-selected-window):
* lisp/subr.el (with-temp-file, with-temp-message, with-syntax-table):
* lisp/progmodes/python.el (def-python-skeleton):
* lisp/net/dbus.el (dbus-ignore-errors):
* lisp/jka-cmpr-hook.el (with-auto-compression-mode):
* lisp/international/mule.el (with-category-table):
* lisp/emacs-lisp/timer.el (with-timeout):
* lisp/emacs-lisp/lisp-mnt.el (lm-with-file):
* lisp/emacs-lisp/eieio.el (with-slots):
* lisp/emacs-lisp/easymenu.el (easy-menu-define):
* lisp/emacs-lisp/debug.el (debugger-env-macro):
* lisp/emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
(Multiple-value-call, Multiple-value-prog1):
* lisp/emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
(cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
edebug rule to definition.
* lisp/emacs-lisp/lisp-mode.el (save-selected-window)
(with-current-buffer, combine-after-change-calls)
(with-output-to-string, with-temp-file, with-temp-buffer)
(with-temp-message, with-syntax-table, read-if, eval-after-load)
(dolist, dotimes, when, unless):
* lisp/emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Mon, 30 Aug 2010 15:03:05 +0200 |
| parents | 695cf19ef79e |
| children | 375f2633d815 ef719132ddfa |
| rev | line source |
|---|---|
| 45625 | 1 Iso-Functional Type Contour |
| 2 | |
| 3 | |
| 4 This is a term coined to describe "column int->float" change approach, and can | |
| 5 be used whenever low-level types need to change (hopefully not often!) but the | |
| 6 meanings of the values (whose type has changed) do not. | |
| 7 | |
| 8 The premise is that changing a low-level type potentially means lots of code | |
| 9 needs to be changed as well, and the question is how to do this incrementally, | |
| 10 which is the preferred way to change things. | |
| 11 | |
| 12 Say LOW and HIGH are C functions: | |
| 13 | |
| 14 int LOW (void) { return 1; } | |
| 15 void HIGH (void) { int value = LOW (); } | |
| 16 | |
| 17 We want to convert LOW to return float, so we cast HIGH usage: | |
| 18 | |
| 19 float LOW (void) { return 1.0; } | |
| 20 void HIGH (void) { int value = (int) LOW (); } /* iftc */ | |
| 21 | |
| 22 The comment /* iftc */ is used to mark this type of casting to differentiate | |
| 23 it from other casting. We commit the changes and can now go about modifying | |
| 24 LOW and HIGH separately. When HIGH is ready to handle the type change, the | |
| 25 cast can be removed. | |
| 52401 | 26 |
| 27 ;;; arch-tag: 3309cc41-5d59-421b-b7be-c94b04083bb5 |
