aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-09-16 15:30:04 +0000
committerRichard M. Stallman2002-09-16 15:30:04 +0000
commitc721078eb9ed2e7ff3093dd6e96dd43a71df199a (patch)
treea65cfb09c5f4e152b2189b71e7eba53e1d38bfb1
parentbde4f35405acfa091950acb5e9207f68b1486b31 (diff)
downloademacs-c721078eb9ed2e7ff3093dd6e96dd43a71df199a.tar.gz
emacs-c721078eb9ed2e7ff3093dd6e96dd43a71df199a.zip
(unexec): Deal with .got, reinstating change from 25-08-1999.
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/ChangeLog75
-rw-r--r--src/ChangeLog5
-rw-r--r--src/unexelf.c4
4 files changed, 89 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 909e0e61c97..fcad0c06202 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -451,6 +451,11 @@ sense for the attribute. When an attribute is de-selected by unchecking
451its check-box, then the (now ignored, but still present temporarily in 451its check-box, then the (now ignored, but still present temporarily in
452case you re-select the attribute) value is hidden. 452case you re-select the attribute) value is hidden.
453 453
454** When you set or reset a variable's value in a Customize buffer,
455the previous value becomes the "backup value" of the variable.
456You can go back to that backup value by selecting "Use Backup Value"
457under the "[State]" button.
458
454+++ 459+++
455** In GUD mode, when talking to GDB, C-x C-a C-j "jumps" the program 460** In GUD mode, when talking to GDB, C-x C-a C-j "jumps" the program
456counter to the specified source line (the one where point is). 461counter to the specified source line (the one where point is).
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 465c04b5998..26f9b1ad12a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12002-09-16 Richard M. Stallman <rms@gnu.org>
2
3 * cus-edit.el (custom-variable-backup-value): New function.
4 (custom-variable-reset-backup): New function.
5 (custom-variable-menu): Add item for custom-variable-reset-backup.
6 (custom-variable-set, custom-variable-reset-saved)
7 (custom-variable-reset-standard): Call custom-variable-backup-value.
8
12002-09-16 Juanma Barranquero <lektu@terra.es> 92002-09-16 Juanma Barranquero <lektu@terra.es>
2 10
3 * dired-aux.el (dired-add-entry): Add missing argument to `dired-mark'. 11 * dired-aux.el (dired-add-entry): Add missing argument to `dired-mark'.
@@ -25,6 +33,13 @@
25 (menu-bar-search-menu): Reorganized. 33 (menu-bar-search-menu): Reorganized.
26 (menu-bar-edit-menu): Added "Replace" submenu. 34 (menu-bar-edit-menu): Added "Replace" submenu.
27 35
362002-09-15 Richard M. Stallman <rms@gnu.org>
37
38 * scroll-bar.el (scroll-bar-mode): Specify :initialize.
39
40 * menu-bar.el (menu-bar-make-mm-toggle): Don't put a quote befor FNAME
41 when it's not being evaluated.
42
282002-09-15 Markus Rost <rost@math.ohio-state.edu> 432002-09-15 Markus Rost <rost@math.ohio-state.edu>
29 44
30 * dired.el (dired-move-to-filename): Fix previous change. 45 * dired.el (dired-move-to-filename): Fix previous change.
@@ -38,6 +53,66 @@
38 53
392002-09-14 Richard M. Stallman <rms@gnu.org> 542002-09-14 Richard M. Stallman <rms@gnu.org>
40 55
56 * time.el (display-time-mode): Set display-time-load-average here.
57 (display-time-load-average): Initialize to nil.
58 (display-time-default-load-average): Add "None" alternative.
59 (display-time-update): Handle "None" alternative for load-average.
60
61 * dired-aux.el (dired-bunch-files): Put the arg FILES
62 back as it was after temporary destrucive mods.
63 (dired-add-entry): Use dired-insert-directory to handle indentation.
64 Explicitly restore the line's marker character.
65 Preserve the old file name's text properties.
66 (dired-add-entry-do-indentation): Function deleted.
67 (dired-relist-file): Doc fix.
68 (dired-rename-file): Change argument names.
69 (foo-rename-file): New function.
70 (dired-do-hardlink): Use dired-hardlink.
71 (dired-hardlink): New function.
72 (dired-insert-subdir-doinsert): Use dired-insert-directory;
73 that handles indentation, text props and header line.
74 dired-readin-insert gets no args.
75 Use `last' instead of `reverse'.
76
77 * dired.el (dired-use-ls-dired): New variable.
78 (dired-directory): Document the rules better.
79
80 * dired.el (dired-insert-headerline): Function deleted.
81 (dired-revert): Pass no args to dired-readin.
82 (dired-move-to-filename): First try using dired-filename property.
83 (dired-move-to-end-of-filename): Likewise.
84 (dired-why): Try to show the start of this page of warnings.
85 (dired-log): Insert the buffer name at start of page, not end.
86 (dired-log-summary): If just one failure, explain it in echo area.
87
88 * dired.el (dired-internal-noselect):
89 Always set dired-directory, when buffer is not new.
90 Pass dir-or-list, not dirname, to dired-mode.
91 Call dired-readin with no args.
92 Don't call dired-after-readin-hook here.
93 (dired-find-buffer-nocreate): Expand dirname.
94 Expand the dir from dired-directory to compare with dirname.
95
96 (dired-readin): Take no args. Get the directory from dired-directory.
97 Run dired-before-reading hook inside save-excursion.
98 Run dired-after-readin-hook here.
99 Don't make undo entries at all.
100 Call dired-readin-insert with no args.
101 Don't change indentation here.
102 Don't insert headerline here.
103
104 (dired-readin-insert): Take no args.
105 Get dir and file-list from dired-directory.
106 Call dired-insert-directory the new way.
107 Don't insert "wildcard" info here.
108
109 (dired-insert-directory): New arg FILE-LIST.
110 First arg now DIR, always just the directory.
111 This function fully handles setting up the buffer text:
112 update indentation, insert headerline and "wildcard" info.
113 Pass --dired arg if appropriate; put info in dired-filename props.
114 Don't expand file names here.
115
41 * warnings.el (display-warning): In batch mode, 116 * warnings.el (display-warning): In batch mode,
42 exclude the final newline from the arg to `message'. 117 exclude the final newline from the arg to `message'.
43 118
diff --git a/src/ChangeLog b/src/ChangeLog
index 4ad23b91929..75092f3d862 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12002-09-16 Dave Love <fx@gnu.org>
2
3 * unexelf.c (unexec): Deal with .got, reinstating change from
4 25-08-1999.
5
12002-09-13 Richard M. Stallman <rms@gnu.org> 62002-09-13 Richard M. Stallman <rms@gnu.org>
2 7
3 * s/sol2-6.h (UNEXEC): Comment out definition. 8 * s/sol2-6.h (UNEXEC): Comment out definition.
diff --git a/src/unexelf.c b/src/unexelf.c
index cf3fc9d5bcd..affdbad1964 100644
--- a/src/unexelf.c
+++ b/src/unexelf.c
@@ -1013,6 +1013,8 @@ unexec (new_name, old_name, data_start, bss_start, entry_address)
1013 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name), 1013 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
1014 ".lit8") 1014 ".lit8")
1015 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name), 1015 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
1016 ".got")
1017 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
1016 ".sdata1") 1018 ".sdata1")
1017 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name), 1019 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
1018 ".data1") 1020 ".data1")
@@ -1196,6 +1198,8 @@ unexec (new_name, old_name, data_start, bss_start, entry_address)
1196 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name), 1198 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
1197 ".lit8") 1199 ".lit8")
1198 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name), 1200 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
1201 ".got")
1202 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
1199 ".sdata1") 1203 ".sdata1")
1200 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name), 1204 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
1201 ".data1")) 1205 ".data1"))