diff options
| author | Dan Nicolaescu | 2008-07-10 02:23:34 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-07-10 02:23:34 +0000 |
| commit | 21133394285a7ff6fe84d6b1d02844c3f2986775 (patch) | |
| tree | bd1f7a7f1f55fbc109178130576109ff926057ba /src | |
| parent | 3d3db608ee5f8ef5a80d4e444f30d9d0c2dba672 (diff) | |
| download | emacs-21133394285a7ff6fe84d6b1d02844c3f2986775.tar.gz emacs-21133394285a7ff6fe84d6b1d02844c3f2986775.zip | |
Remove boilerplate comments.
(NO_REMAP): Remove unused definition.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/m/powermac.h | 40 |
2 files changed, 3 insertions, 40 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f5aa7306f89..98865bfae13 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * m/powermac.h: Remove boilerplate comments. | ||
| 4 | (NO_REMAP): Remove unused definition. | ||
| 5 | |||
| 3 | * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files | 6 | * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files |
| 4 | define them. | 7 | define them. |
| 5 | 8 | ||
diff --git a/src/m/powermac.h b/src/m/powermac.h index c9144d3f9c7..4c7cc27d411 100644 --- a/src/m/powermac.h +++ b/src/m/powermac.h | |||
| @@ -47,14 +47,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 47 | 47 | ||
| 48 | #define NO_UNION_TYPE | 48 | #define NO_UNION_TYPE |
| 49 | 49 | ||
| 50 | /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | ||
| 51 | the 24-bit bit field into an int. In other words, if bit fields | ||
| 52 | are always unsigned. | ||
| 53 | |||
| 54 | If you use NO_UNION_TYPE, this flag does not matter. */ | ||
| 55 | |||
| 56 | /* #define EXPLICIT_SIGN_EXTEND */ | ||
| 57 | |||
| 58 | /* Data type of load average, as read out of kmem. */ | 50 | /* Data type of load average, as read out of kmem. */ |
| 59 | 51 | ||
| 60 | #define LOAD_AVE_TYPE long | 52 | #define LOAD_AVE_TYPE long |
| @@ -63,28 +55,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 63 | 55 | ||
| 64 | #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | 56 | #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) |
| 65 | 57 | ||
| 66 | /* Define CANNOT_DUMP on machines where unexec does not work. | ||
| 67 | Then the function dump-emacs will not be defined | ||
| 68 | and temacs will do (load "loadup") automatically unless told otherwise. */ | ||
| 69 | |||
| 70 | /* #define CANNOT_DUMP */ | ||
| 71 | |||
| 72 | /* Define VIRT_ADDR_VARIES if the virtual addresses of | ||
| 73 | pure and impure space as loaded can vary, and even their | ||
| 74 | relative order cannot be relied on. | ||
| 75 | |||
| 76 | Otherwise Emacs assumes that text space precedes data space, | ||
| 77 | numerically. */ | ||
| 78 | |||
| 79 | /* #define VIRT_ADDR_VARIES * */ | ||
| 80 | |||
| 81 | /* Define NO_REMAP if memory segmentation makes it not work well | ||
| 82 | to change the boundary between the text section and data section | ||
| 83 | when Emacs is dumped. If you define this, the preloaded Lisp | ||
| 84 | code will not be sharable; but that's better than failing completely. */ | ||
| 85 | |||
| 86 | #define NO_REMAP | ||
| 87 | |||
| 88 | /* Some really obscure 4.2-based systems (like Sequent DYNIX) | 58 | /* Some really obscure 4.2-based systems (like Sequent DYNIX) |
| 89 | * do not support asynchronous I/O (using SIGIO) on sockets, | 59 | * do not support asynchronous I/O (using SIGIO) on sockets, |
| 90 | * even though it works fine on tty's. If you have one of | 60 | * even though it works fine on tty's. If you have one of |
| @@ -99,15 +69,5 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 99 | 69 | ||
| 100 | /* #define NO_SOCK_SIGIO */ | 70 | /* #define NO_SOCK_SIGIO */ |
| 101 | 71 | ||
| 102 | |||
| 103 | /* After adding support for a new system, modify the large case | ||
| 104 | statement in the `configure' script to recognize reasonable | ||
| 105 | configuration names, and add a description of the system to | ||
| 106 | `etc/MACHINES'. | ||
| 107 | |||
| 108 | If you've just fixed a problem in an existing configuration file, | ||
| 109 | you should also check `etc/MACHINES' to make sure its descriptions | ||
| 110 | of known problems in that configuration should be updated. */ | ||
| 111 | |||
| 112 | /* arch-tag: d8af08a6-48b3-4c8a-94a0-0b4acae5e1f0 | 72 | /* arch-tag: d8af08a6-48b3-4c8a-94a0-0b4acae5e1f0 |
| 113 | (do not change this comment) */ | 73 | (do not change this comment) */ |