2001-01-31 David Smith <dsmith@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
ab9cc815
DS
12001-01-31 David Smith <dsmith@redhat.com>
2
3 * MAINTAINERS: Add David Smith to Write After Approval list.
4
d1f4cff8
AC
5Tue Jan 30 15:43:08 2001 Andrew Cagney <cagney@cygnus.com>
6
7 * cli/cli-utils.c (putchar_filtered): Move function from here.
8 * utils.c (putchar_filtered): To here.
9 * cli/cli-utils.h (putchar_filtered): Move declaration from here.
10 * defs.h (putchar_filtered): To here.
11
74c1b268
AC
12Tue Jan 30 17:27:11 2001 Andrew Cagney <cagney@redhat.com>
13
14 * configure.in (AC_CHECK_FUNCS): Replace vfork test with
15 AC_FUNC_VFORK macro.
16 * config.in, configure: Re-generate.
17
18 * gdb_vfork.h: New file.
19 * ser-pipe.c (pipe_open): Update. Include "gdb_vfork.h".
20 * fork-child.c (fork_inferior): Ditto.
21
4fcf66da
AC
22Tue Jan 30 17:09:07 2001 Andrew Cagney <cagney@redhat.com>
23
24 * defs.h (strsave): Delete declaration.
25 * utils.c (strsave): Delete definition.
26 * TODO (strsave): Update
27
28 * mac-xdep.c (tilde_expand): Replace strsave with xstrdup.
29 * sparcl-tdep.c (sparclite_open): Ditto.
30 * mips-tdep.c (mips_set_processor_type_command): Ditto.
31 (_initialize_mips_tdep): Ditto.
32 * solib.c (solib_open): Ditto.
33 * symfile.c (add_filename_language): Ditto.
34 (set_ext_lang_command): Ditto.
35 * source.c (init_source_path): Ditto.
36 (mod_path): Ditto.
37 * sh3-rom.c (sh3_open): Ditto.
38 (sh3e_open): Ditto.
39 * serial.c (serial_open): Ditto.
40 * remote-mips.c (common_open): Ditto.
41 * monitor.c (monitor_open): Ditto.
42 * m32r-rom.c (m32r_upload_command): Ditto.
43 * infcmd.c (path_command): Ditto.
44 * f-exp.y (parse_number): Ditto.
45 * breakpoint.c (create_longjmp_breakpoint): Ditto.
46 (create_thread_event_breakpoint): Ditto.
47 * arc-tdep.c (arc_set_cpu_type_command): Ditto.
48 (_initialize_arc_tdep): Ditto.
49
e191e0ab
AC
50Tue Jan 30 15:14:26 2001 Andrew Cagney <cagney@skil>
51
52 * cli/cli-script.c (define_command): Check for a bad hook value in
53 switch statement.
54
10214f55
C
552001-01-30 J.T. Conklin <jtc@redback.com>
56
57 * configure/sh/embed.mt: New file.
58 * configure/sh/linux.mt: New file.
59 * configure/sh/sh.mt: Removed.
60 * configure.tgt (sh-*-hms,sh-*-coff*,sh-*-elf*,sh-*-linux): New targets.
61 (sh-*-*): Removed.
62
c9049fc9
MC
632001-01-29 Michael Chastain <chastain@redhat.com>
64
65 * symtab.c (block_lookup_symbol): Use 'namespace' parameter in
66 symbol comparisons in binary search.
67
aea02b6b
CF
682000-01-27 Christopher Faylor <cgf@cygnus.com>
69
70 * win32-nat.c (child_xfer_memory): Add missing argument required by
71 2001-01-23 change.
72
e6e0bfab
MK
732001-01-27 Mark Kettenis <kettenis@gnu.org>
74
75 * ui-out.c (do_list_end): New function.
76 (make_cleanup_ui_out_list_end): New function.
77 * ui-out.h: Provide prototype for make_cleanup_ui_out_list_end.
78 * stack.c (print_frame) [UI_OUT]: Call
79 make_cleanup_ui_out_list_end to make sure we mark the end of the
80 list if we do a non-local exit. At the end of the function,
81 instead of calling ui_out_list_end directly, let do_cleanups
82 handle it.
83
1adeb98a
FN
842001-01-26 Fernando Nasser <fnasser@redhat.com>
85
86 Fix double parsing of filenames passed as command line arguments
87 to GDB (causes weird handling of escape characters).
88 Also, remove dependencies on the CLI from libgdb.
89 * call-cmds.h: Remove declaration of exec_file_command().
90 * gdbcore.h: Remove declaration of exec_file_command().
91 Add declarations for exec_open() and exec_file_clear().
92 * symfile.h: Add declarations for symbol_file_add_main() and
93 symbol_file_clear().
94 * exec.c (exec_open): New function. Implements to_open for exec
95 targets.
96 (exec_file_clear): New function. Makes GDB forget about a previously
97 specified executable file.
98 (exec_file_attach): Move parsing of arguments from here ...
99 (exec_file_command): ... to here.
100 (init_exec_ops): Use exec_open(), not exec_file_command() to
101 implement to_open for exec targets.
102 * symfile.c (symbol_file_add_main): New function. Call symbol_file_add()
103 with default values. Used when the file name has already been parsed.
104 (symbol_file_clear): New function. Makes GDB forget about previously
105 read symbols.
106 (symbol_file_command): Call the above function instead of inline code.
107 * main.c: Include "symfile.h" and "gdbcore.h" instead of the deprecated
108 "call-cmds.h".
109 (captured_main): Call exec_file_attach() and symbol_file_add_main()
110 instead of exec_file_command() and symbol_file_command().
111 (captured_main): Add comment.
112 * corefile.c: Include "symfile.h".
113 (core_file_command): Call symbol_file_add_main() instead of
114 symbol_file_command().
115 (reopen_exec_file): Call exec_open() instead of exec_file_command().
116 * infcmd.c: Include "symfile.h".
117 (attach_command): Call symbol_file_add_main() instead of
118 symbol_file_command().
119 * infrun.c: Remove comment about the inclusion of "symfile.h",
120 not any longer appropriate.
121 (follow_exec): Call symbol_file_add_main() instead of
122 symbol_file_command().
123 * remote-es.c: Include "symfile.h".
124 (es1800_load): Call symbol_file_add_main() instead of
125 symbol_file_command().
126 * remote-vx.c: Remove comment about the inclusion of "symfile.h",
127 not any longer appropriate.
128 (vx-wait): Call symbol_file_add_main() instead of
129 symbol_file_command().
130 * solib-svr4.c (open_symbol_file_object): Call symbol_file_add_main()
131 instead of symbol_file_command().
132 * v850ice.c (ice_file): Call exec_open(), exec_file_attach() and
133 symbol_file_add_main() instead of exec_file_command() and
134 symbol_file_command().
135 * Makefile.in: Update dependencies.
136
5b616ba1
JH
1372001-01-26 Jeff Holcomb <jeffh@redhat.com>
138
139 * remote-udi.c (udi_open): Change strdup to xstrdup.
140 * thread.c (thread_apply_all_command): Change strdup to xstrdup.
141 Update copyright message.
142 * varobj.c (delete_variable_1): Likewise.
143
144 * gdb_string.h: Remove declaration of strdup. Update copyright
145 message.
146 * config/xm-mpw.h: Likewise.
147 * config/i386/xm-i386mach.h: Likewise.
148 * config/m68k/xm-apollo68b.h: Likewise.
149 * config/m68k/xm-hp300bsd.h: Likewise.
150 * config/rs6000/xm-rs6000.h: Likewise.
151 * config/vax/xm-vaxult.h: Remove declaration of strdup.
152 * config/vax/xm-vaxult2.h: Likewise.
153
b91d87cf
JH
1542001-01-26 Jeff Holcomb <jeffh@redhat.com>
155
156 * MAINTAINERS: Add Jeff Holcomb to Write After Approval list.
157
873406a6
C
1582001-01-25 J.T. Conklin <jtc@redback.com>
159
160 * target.c (target_xfer_memory_partial): Return -1 on failure due
161 to invalid access mode attribute.
162
0613c401
CF
1632001-01-25 Christopher Faylor <cgf@cygnus.com>
164
165 * win32-nat.c (_initialize_core_win32): Prototype correctly.
166
efd59e3f
MK
1672001-01-25 Mark Kettenis <kettenis@gnu.org>
168
169 * config/alpha/tm-fbsd.h: Update copyright.
170 (USE_STRUCT_CONVENTION): Define in terms of
171 alphabsd_use_struct_convention.
172 * config/alpha/fbsd.mt (TDEPFILES): Add alphafbsd-tdep.c.
173 * alphafbsd-tdep.c: New file.
174
388e1ff2
FN
1752001-01-24 Fernando Nasser <fnasser@redhat.com>
176
177 * top.c (print_gdb_version): Update Copyright year.
178
f4d650ec
C
1792001-01-24 J.T. Conklin <jtc@redback.com>
180
181 * dcache.c (dcache_write_line): Fix typo.
182
183 * memattr.c (delete_mem_region): Replace free() with xfree().
184 (mem_number): Add explicit type.
185
186 * sol-thread.c (sol_thread_xfer_memory): Add attrib argument.
187 (rw_common): Likewise.
188
07091751
FN
1892001-01-24 Fernando Nasser <fnasser@redhat.com>
190
191 * infcmd.c (get_inferior_args, set_inferior_args): Accessor functions
192 for the inferior program arguments.
193 (run_command, run_no_args_command, init_infcmd)): Use accessor
194 functions to set the inferior program arguments.
195 * inferior.h: Add definitions to the accessor functions above.
196
090c42a4
JB
1972001-01-23 Jim Blandy <jimb@redhat.com>
198
199 * dwarf2read.c (read_tag_const_type, read_tag_volatile_type):
200 Implement these correctly, using make_cv_type.
201
f29d9b6d 2022001-01-23 J.T. Conklin <jtc@redback.com>
29e57380
C
203
204 * exec.c (xfer_memory): Add attrib argument.
205 * infptrace.c (child_xfer_memory): Likewise.
e5da8f38 206 * lin-lwp.c (lin_lwp_xfer_memory): Likewise.
29e57380
C
207 * monitor.c (monitor_xfer_memory): Likewise.
208 * remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
209 * remote-array.c (array_xfer_memory): Likewise.
210 * remote-bug.c (bug_xfer_memory): Likewise.
211 * remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
212 * remote-eb.c (eb_xfer_inferior_memory): Likewise.
213 * remote-es.c (es1800_xfer_inferior_memory): Likewise.
214 * remote-mips.c (mips_xfer_memory): Likewise.
215 * remote-mm.c (mm_xfer_inferior_memory): Likewise.
216 * remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
217 * remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
218 * remote-rdi.c (arm_rdi_xfer_memory): Likewise.
219 * remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
220 * remote-sds.c (sds_xfer_memory): Likewise.
221 * remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
222 * remote-st.c (st2000_xfer_inferior_memory): Likewise.
223 * remote-udi.c (udi_xfer_inferior_memory): Likewise.
224 * remote-vx.c (vx_xfer_memory): Likewise.
225 * remote.c (remote_xfer_memory): Likewise.
226 * target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
227 * target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
e5da8f38 228 * thread-db.c (thread_db_xfer_memory): Likewise.
29e57380
C
229
230 * target.h (#include "memattr.h"): Added.
231 (target_ops.to_xfer_memory): Add attrib argument.
232
233 * wince.c (_initialize_inftarg): Removed call to set_dcache_state.
234 * dcache.h (set_dcache_state): Removed declaration.
235 * dcache.c (set_dcache_state): Removed definition
236
237 * dcache.c: Update module comment, as dcache is now enabled and
238 disabled with memory region attributes instead of by the global
239 variable "remotecache". Add comment describing the interaction
240 between dcache and memory region attributes.
241 (dcache_xfer_memory): Add comment describing benefits of moving
242 cache writeback to a higher level.
243 (dcache_struct): Removed cache_has_stuff field. This was used to
244 record whether the cache had been accessed in order to invalidate
245 it when it was disabled. However, this is not needed because the
246 cache is write through and the code that enables, disables, and
247 deletes memory regions invalidate the cache. Add comment which
248 suggests that we could be more selective and only invalidate those
249 cache lines containing data from those memory regions.
250 (dcache_invalidate): Updated.
251 (dcache_xfer_memory): Updated.
f29d9b6d 252
29e57380
C
253 (dcache_alloc): Don't abort() if dcache_enabled_p is clear.
254 (dcache_xfer_memory): Removed code that called do_xfer_memory() to
255 perform a uncached transfer if dcache_enabled_p was clear. This
256 function is now only called if caching is enabled for the memory
257 region.
258 (dcache_info): Always print cache info.
259
260 * target.c (do_xfer_memory): Add attrib argument.
261 (target_xfer_memory, target_xfer_memory_partial): Break transfer
262 into chunks defined by memory regions, pass region attributes to
263 do_xfer_memory().
264 * dcache.c (dcache_read_line, dcache_write_line): Likewise.
265
266 * Makefile.in (SFILES): Add memattr.c.
267 (COMMON_OBS): Add memattr.o.
268 (dcache.o): Add target.h to dependencies.
269 * memattr.c: New file.
270 * memattr.h: Likewise.
271
f29d9b6d
C
272 * config/m32r/m32r.mt (GDBSERVER_LIBS): Added ../../intl/libintl.a.
273 * config/mips/vr5000.mt (GDBSERVER_LIBS): Likewise.
274 * config/tic80/tic80.mt (GDBSERVER_LIBS): Likewise.
275 * gdbserver/low-sim.c (#include "defs.h"): Removed.
276 (mygeneric_load): Rename from generic_load.
277
278 * gdbserver/low-hppabsd.c (#include "server.h"): Added.
279 (#include "defs.h"): Removed.
280 (inferior_pid, perror_with_name): Remove declarations.
281 * gdbserver/low-linux.c: Likewise.
282 * gdbserver/low-nbsd.c: Likewise.
283 * gdbserver/low-sparc.c: Likewise.
284 * gdbserver/low-sun3.c: Likewise.
285
286 * i386-stub.c: Re-indent.
287 * m68k-stub.c: Re-indent.
288
58d5518e
ND
2892001-01-22 Nicholas Duffek <nsd@redhat.com>
290
291 * gdbarch.sh (PARM_BOUNDARY): Define.
292 * gdbarch.c: Regenerate.
293 * gdbarch.h: Regenerate.
294
f6427ade
C
2952001-01-22 J.T. Conklin <jtc@redback.com>
296
297 * ns32k-tdep.c: #include "frame.h"
298 * config/ns32k/tm-umax.h (FRAME_FIND_SAVED_REGS): Restore. It
299 appears to have been inadvertantly removed sometime in May 1999.
300
301 * Revert 2000-11-09 changes where shared library objects were
302 moved from NATDEPFILES to TDEPFILES on NetBSD targets. While
303 we'd like to be able to debug dynamically linked executables,
304 this makes it impossible to build a cross debugger on a many
305 hosts.
306
307 * config/i386/nbsd.mt: Remove solib.o, solib-svr4.o from TDEPFILES.
308 * config/i386/nbsdelf.mt: Likewise.
309 * config/m68k/nbsd.mt: Likewise.
310 * config/ns32k/nbsd.mt: Likewise.
311 * config/powerpc/nbsd.mt: Likewise.
312 * config/sparc/nbsd.mt: Likewise.
313 * config/sparc/nbsdelf.mt: Likewise.
314 * config/i386/nbsd.mh: Add solib.o, solib-svr4.o to NATDEPFILES.
315 * config/i386/nbsdelf.mh: Likewise.
316 * config/m68k/nbsd.mh: Likewise.
317 * config/ns32k/nbsd.mh: Likewise.
318 * config/powerpc/nbsd.mh: Likewise.
319 * config/sparc/nbsd.mh: Likewise.
320
8052a17a
JM
3212001-01-19 Jason Merrill <jason@redhat.com>
322
323 * dbxread.c (read_ofile_symtab): Stay with AUTO_DEMANGLING for G++.
324 (process_one_symbol): Likewise.
325 * dwarfread.c (handle_producer): Likewise.
326
21a6f6bb
AC
327Thu Jan 18 12:08:57 2001 Andrew Cagney <cagney@b1.cygnus.com>
328
329 * configure.in (build_warnings): Disable -Wuninitialized until GDB
330 compiles with -Wuninitialized,-Werror.
331 * configure: Regenerate.
332
333 * MAINTAINERS: Add list of buildable targets.
334
494b7ec9
AC
335Thu Jan 18 12:48:04 2001 Andrew Cagney <cagney@b1.cygnus.com>
336
337 * defs.h (STRCMP): Delete macro.
338
339 * objfiles.c (objfile_relocate): Replace STRCMP with call to
340 strcmp.
341 * symtab.c (lookup_partial_symbol, lookup_block_symbol): Ditto.
342 * symfile.c (compare_symbols): Ditto.
343 * standalone.c (open): Ditto.
344 * remote-es.c (verify_break): Ditto.
345 * cli/cli-decode.c (add_cmd, add_show_from_set): Ditto.
346
347 * symfile.c (compare_psymbols): Delete comment refering to STRCMP.
348
8038e1e2
AC
349Thu Jan 18 12:25:06 2001 Andrew Cagney <cagney@b1.cygnus.com>
350
351 * varobj.c (FREEIF): Delete macro.
352 (varobj_set_value, free_variable): Replace FREEIF with ``xfree''
353 call.
354
ea8d0b28
NC
3552001-01-18 Nick Clifton <nickc@redhat.com>
356
357 * arc-tdep.c (arc_cpu_type_table): Add new arc core numbers.
358 (arc_print_insn): No bfd available, so pass NULL to
359 arc_get_disassembler.
360
5dbd9048
JB
3612001-01-09 James Ingham <jingham@inghji.apple.com>
362
363 * symtab.c (lookup_symbol_aux): Call lookup_symbol_aux to lookup
364 a mangled symbol rather than recursing into lookup_symbol, since
365 this will just re-unmangle the name & call lookup_symbol_aux -
366 leading to an infinite recursion.
367
28ae27b1
MK
3682001-01-18 Mark Kettenis <kettenis@gnu.org>
369
370 * infcmd.c (print_return_value): Restore another space lost by
371 switch to UIOUT. ``$NN='' should be ``$NN =''.
372
6ab3a9c9
AC
373Fri Jan 19 02:31:40 2001 Andrew Cagney <cagney@b1.cygnus.com>
374
375 * target.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
376 * breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Wrap macro
377 definition in parenthesis.
378
ad6525fc
AC
379Fri Jan 19 02:13:40 2001 Andrew Cagney <cagney@b1.cygnus.com>
380
381 From 2000-10-27 Mark Salter <msalter@redhat.com>:
382 * remote.c (remote_remove_hw_breakpoint): Add 'len' field to Z
383 packet.
384 (remote_insert_hw_breakpoint): Ditto.
385
6259c7e2
C
3862001-01-17 J.T. Conklin <jtc@redback.com>
387
388 * config/m68k/tm-nbsd.h (USE_STRUCT_CONVENTION): Define.
9c95b27f 389 (BPT_VECTOR, REMOTE_BPT_VECTOR): Change to 0xf.
6259c7e2
C
390 * config/m68k/nbsd.mt (TDEPFILES): Add m68knbsd-tdep.o.
391 * m68knbsd-tdep.c: New file.
392
393 * i386nbsd-tdep.c: Remove #if 0'd out #includes.
394
395 * m68knbsd-nat.c: #include gdbcore.h.
396
abdcb2a5
AC
397Wed Jan 17 09:41:58 2001 Andrew Cagney <cagney@b1.cygnus.com>
398
399 * MAINTAINERS: Add J.T. Conklin to Blanket Write Privs.
400
e7a8479f
MS
4012001-01-16 Michael Snyder <msnyder@cleaver.cygnus.com>
402
aaeb7efa
MS
403 * procfs.c (procfs_stopped_by_watchpoint): Don't die if process
404 goes away -- just return false (ie. not stopped by watchpoint).
e7a8479f
MS
405 * source.c (openp): Fix typo in comment.
406
7036d6ce
ND
4072001-01-12 Nicholas Duffek <nsd@redhat.com>
408
409 * blockframe.c (generic_get_saved_register): Spelling fix.
410 * frame.h (FRAME_FP): Spelling fix.
411
9549d9c1
AC
412Fri Jan 12 18:29:46 2001 Andrew Cagney <cagney@b1.cygnus.com>
413
414 * infcmd.c (print_return_value): Restore space lost by switch to
415 UIOUT. ``$NN='' should be ``$NN =''.
416
7302a204
ND
4172001-01-08 Nicholas Duffek <nsd@redhat.com>
418
419 * regcache.c (set_register_cached, register_buffer,
420 real_register, pseudo_register fetch_register, store_register):
421 New functions.
422 (register_changed, read_relative_register_raw_bytes_for_frame,
423 registers_changed, registers_fetched, read_register_bytes,
424 read_register_gen, write_register_gen, read_register,
425 read_signed_register, write_register, supply_register): Replace
426 register_valid[] with register_cached() and
427 set_register_cached().
428 (read_register_bytes, read_register_gen, write_register_gen,
429 read_register, read_signed_register, write_register,
430 supply_register): Replace registers[] with register_buffer().
431 (read_register_bytes, read_register_gen, read_register,
432 read_signed_register): Call fetch_register().
433 (write_register_gen, write_register): Call real_register() and
434 store_register().
435 (write_register_bytes): Call store_register().
436 * value.h (set_register_cached, register_buffer): Prototype.
437 * remote.c (remote_fetch_registers): Allocate regs[] with a
438 run-time size. Replace register_valid[] with
439 set_register_cached().
440 (store_register_using_P, remote_store_registers): Replace
441 registers[] with register_buffer().
442
5ebd2499
ND
4432001-01-08 Nicholas Duffek <nsd@redhat.com>
444
445 * regcache.c: Change "write-back" comment to "write-through".
446 Change "regno" to "regnum".
447 (read_register, read_signed_register): Remove "raw" from return
448 value description.
449 (supply_register): Spelling fix.
450 * value.h: Change "regno" to "regnum".
451
1302fd5e
FN
4522001-01-08 Fernando Nasser <fnasser@redhat.com>
453
454 * Makefile.in (install-gdbtk): Add .itcl files to the list of files
455 to be installed.
456
9dcb560c
MS
4572001-01-04 Michael Snyder <msnyder@mvstp600e.cygnus.com>
458
459 * mips-tdep.c (mips_coerce_float_to_double): Fix typo in comment.
460
0e2fb98e
ND
4612001-01-04 Nicholas Duffek <nsd@redhat.com>
462
463 * valops.c (VALUE_SUBSTRING_START): Delete.
464
12cf3f1b
ND
4652001-01-04 Nicholas Duffek <nsd@redhat.com>
466
467 * Makefile.in (SUBDIR_CLI_OBS): Add cli/cli-utils.o.
468 (SUBDIR_CLI_SRCS): Add cli/cli-utils.c.
469 (cli_utils_h): New variable.
470 (cli/cli-utils.o): New rule.
471 * cli/cli-utils.c: New file.
472 * cli/cli-utils.h: New file.
473
cc533b9d
ND
4742001-01-04 Nicholas Duffek <nsd@redhat.com>
475
476 * config/i386/tm-i386.h (REGISTER_CONVERT_TO_VIRTUAL,
477 REGISTER_CONVERT_TO_RAW): Delete trailing semicolon.
478
ad2a4d09
C
4792001-01-03 J.T. Conklin <jtc@redback.com>
480
481 * alphabsd-nat.c, i386-linux-nat.c, i386bsd-nat.c: Fix typo in
482 comment.
483
8140e7ac
MS
4842001-01-02 Michael Snyder <msnyder@cleaver.cygnus.com>
485
d19b71be
MS
486 * sh-tdep.c (sh_extract_return_value): Allow for small return type.
487 (sh_sh4_extract_return_value): Call sh_extract_return_value for
488 non-float types.
779e876b 489 * sparc-tdep.c (sparc_frame_chain): Fix typo in comment.
72e22353
MS
490 Update copyright notice.
491
15f33b66 492For older changes see ChangeLog-2000
c906108c
SS
493\f
494Local Variables:
495mode: change-log
496left-margin: 8
497fill-column: 74
498version-control: never
499End:
This page took 0.156115 seconds and 4 git commands to generate.