1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00
Commit Graph

48037 Commits

Author SHA1 Message Date
Stephen Eglen
79f0a5ed66 Documentation update for installation. 2003-08-19 18:39:11 +00:00
Luc Teirlinck
f58996fbd8 *** empty log message *** 2003-08-19 16:31:28 +00:00
Luc Teirlinck
4244e8801d (Top): Update menu to reflect new Keyboard Macros chapter. 2003-08-19 16:22:53 +00:00
Miles Bader
6cce52e843 Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-19
Use quoting in quick-install-emacs that works with recent gawks
2003-08-19 16:22:27 +00:00
Luc Teirlinck
489a3c7b9d *** empty log message *** 2003-08-19 16:21:49 +00:00
Miles Bader
27eeee55f1 Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-20
src/xterm.c (x_term_init): Correctly use result of Ffile_readable_p.
2003-08-19 16:20:13 +00:00
Gerd Moellmann
f4446bbf6f (lisp_align_malloc): Check for memory full when
allocating ablocks, which also avoids freeing a pointer into an
ablocks structure.
2003-08-19 12:58:35 +00:00
Gerd Moellmann
c5788e99da (BASE_PURESIZE): Increase to 1100000. 2003-08-19 12:42:32 +00:00
Gerd Moellmann
2f297815d7 (Fmove_overlay): Set overlay's next pointer
unconditionally.
2003-08-19 12:39:00 +00:00
Luc Teirlinck
26566a7b8c (Intro): Include kmacro.texi after fixit.texi instead of after
custom.texi. (Suggested by Kim Storm.)
2003-08-19 10:28:00 +00:00
Luc Teirlinck
04885d9dcc *** empty log message *** 2003-08-19 10:26:11 +00:00
Lute Kamstra
e512ece130 Regenerate. 2003-08-19 08:23:12 +00:00
Lute Kamstra
2ceeffa4b3 Revert the change of 2003-07-29 as GTK+ 2.2 is not required anymore. 2003-08-19 08:21:00 +00:00
Markus Rost
15a03c3283 ("french-prefix"): Fix spacing in docstring. 2003-08-19 03:01:06 +00:00
Luc Teirlinck
3b26f44c9e (widget-echo-help): Make it handle expressions that evaluate to
strings.
2003-08-18 22:48:44 +00:00
Luc Teirlinck
55f57de7d7 *** empty log message *** 2003-08-18 22:46:02 +00:00
Alex Schroeder
e6e76838b6 ChangeLog 2003-08-18 18:07:27 +00:00
Alex Schroeder
78024f8836 Patch by Michael Mauger <mmaug@yahoo.com>
Version 1.8.0 of sql-mode.

Simplify selection of SQL products to define highlighting and
interactive mode.  Includes detailed instructions on adding
support for new products.

* sql.el (sql-product): New variable.  Identifies SQL product for
use in highlighting and interactive mode.
(sql-interactive-product): New variable.  SQL product for
sql-interactive-mode.
(sql-product-support): New variable.  Specifies product-specific
parameters to drive highlighting and interactive mode.
(sql-imenu-generic-expression): Add more object types.
(sql-sqlite-options): Correct comment.
(sql-ms-program): Use "osql" rather than "isql".
(sql-prompt-regexp, sql-prompt-length): Update comment.
(sql-mode-menu): Add "Start SQLi session" entry.  Replace
Highlighting submenu with Product menu.  Fix Send Region entry.
(sql-mode-abbrev-table): Add abbreviations.  Support of
SYSTEM-FLAG on define-abbrev.  Support was removed with last
check-in; it now handles older Emacsen without the SYSTEM-FLAG.
(sql-mode-font-lock-object-name): Add font-lock pattern for object
names.
(sql-mode-ansi-font-lock-keywords): Set as default value.
(sql-mode-oracle-font-lock-keywords): Set as default value.
Support Oracle 9i keywords.
(sql-mode-postgres-font-lock-keywords): Set as default value.
(sql-mode-linter-font-lock-keywords): Set as default value.
(sql-mode-ms-font-lock-keywords): New variable.  Support Microsoft
SQLServer 2000.
(sql-mode-sybase-font-lock-keywords)
(sql-mode-interbase-font-lock-keywords)
(sql-mode-sqlite-font-lock-keywords)
(sql-mode-strong-font-lock-keywords)
(sql-mode-mysql-font-lock-keywords)
(sql-mode-db2-font-lock-keywords): New variables.  Default to ANSI
keywords.
(sql-mode-font-lock-defaults): Update comment.
(sql-product-feature): New function.  Returns feature associated
with a product from `sql-product-support' alist.
(sql-product-font-lock): New function.  Set font-lock support
based on `sql-product'.
(sql-add-product-keywords): New function.  Add font-lock rules to
product-specific keyword variables.
(sql-set-product): New function.  Set `sql-product' and apply
appropriate font-lock highlighting.
(sql-highlight-product): New function.  Set font-lock support
based on a product.  Also set mode name to include product name.
(sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
(sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
Use `sql-set-product'.
(sql-highlight-ms-keywords)
(sql-highlight-sybase-keywords)
(sql-highlight-interbase-keywords)
(sql-highlight-strong-keywords)
(sql-highlight-mysql-keywords)
(sql-highlight-sqlite-keywords)
(sql-highlight-db2-keywords): New functions.  Use
`sql-set-product'.
(sql-get-login): Prompt in the same order as the tokens.
(sql-mode): Uses `sql-product-highlight' and
`sql-product-font-lock'.
(sql-product-interactive): New function.  Common portions of
product-specific interactive mode wrappers.
(sql-interactive-mode): Rewritten to use product features.
(sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
(sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
(sql-db2, sql-linter): Use `sql-product-interactive'.
(sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
(sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
(sql-connect-ingres, sql-connect-postgres)
(sql-connect-interbase, sql-connect-db2, sql-connect-linter): New
functions.  Format command line parameters and invoke comint on
the appropriate interpreter.  Code was in the corresponding
`sql-xyz' function before.
(sql-connect-ms): New function.  Support -E argument to use
operating system credentials for authentication.
2003-08-18 17:29:23 +00:00
Luc Teirlinck
675f079af0 (Fixit): Update `Next' pointer. 2003-08-18 13:19:14 +00:00
Luc Teirlinck
f05c739292 (Files): Update `Previous' pointer. 2003-08-18 13:18:17 +00:00
Luc Teirlinck
629ae203f1 (Keyboard Macros): Remove redundant node and section. 2003-08-18 13:16:24 +00:00
Luc Teirlinck
63334b635b (Intro): Include kmacro.texi after custom.texi. (Suggested by Kim
Storm.)
2003-08-18 13:14:54 +00:00
Luc Teirlinck
0d79e1ab67 (EMACSSOURCES): Add kmacro.texi. (Suggested by Kim Storm.) 2003-08-18 13:10:40 +00:00
Luc Teirlinck
37caa02354 *** empty log message *** 2003-08-18 13:08:27 +00:00
Kenichi Handa
bb55c6c97e (encode-char): Fix for the ASCII case. 2003-08-18 12:39:14 +00:00
Glenn Morris
33d0b73fec *** empty log message *** 2003-08-17 22:53:07 +00:00
Glenn Morris
8923d271ca Edward M. Reingold <reingold@emr.cs.iit.edu>
Bind `calendar-goto-day-of-year' to key.

Alan Shutko  <ats@acm.org>
(calendar-make-alist): Correct off-by-one keeping December out of the
alist.
2003-08-17 22:51:29 +00:00
Glenn Morris
163fd24dfd Edward M. Reingold <reingold@emr.cs.iit.edu>
(calendar-goto-day-of-year): New function.
2003-08-17 22:49:46 +00:00
Glenn Morris
f9df0ca042 Edward M. Reingold <reingold@emr.cs.iit.edu>
(calendar-mode-map): Add `calendar-goto-day-of-year' to menu.
(calendar-flatten): New function.
(calendar-mouse-view-other-diary-entries)
(calendar-mouse-view-diary-entries): Rewritten to put any holidays in
the menu title and to show multi-line diary entries correctly in the
menu.
2003-08-17 22:48:54 +00:00
Glenn Morris
c34ff8ac89 Edward M. Reingold <reingold@emr.cs.iit.edu>
(Specified Dates): Add `calendar-goto-day-of-year'.
2003-08-17 22:46:42 +00:00
Kim F. Storm
706da3c2c9 New kmacro.texi file (and associated changes). 2003-08-17 22:27:34 +00:00
Kim F. Storm
a0d0adaf6a (Customization): Add xref to Keyboard Macros chapter.
(Keyboard Macros): Move to new kmacro.texi file.
2003-08-17 22:26:42 +00:00
Kim F. Storm
baf2630dd7 (Queries in Macros): Update xref to keyboard macro query. 2003-08-17 22:15:07 +00:00
Kim F. Storm
129298c0a3 (Keyboard Macros): Reference new keyboard macro topics. 2003-08-17 22:12:57 +00:00
Kim F. Storm
eef59362ac New file describing enhanced keyboard macro functionality. 2003-08-17 22:10:38 +00:00
Kim F. Storm
a1839f0622 (kmacro-keymap): Group related bindings in
initialization for clarity.  Bind C-s to start macro.
Remove C-r binding.
(kmacro-initial-counter-value): New defvar to hold initial counter
value in case we set the value before defining a macro.
(kmacro-insert-counter): Clear kmacro-initial-counter-value..
(kmacro-set-counter): Set kmacro-initial-counter-value if we are
not defining or executing macro.  Doc fix.
(kmacro-add-counter): Clear kmacro-initial-counter-value.
(kmacro-view-last-item, kmacro-view-item-no): New defvars used to
temporarily view older elements on the macro ring without cycling
the ring.
(kmacro-display): Doc fix.
(kmacro-exec-ring-item): New helper function.
(kmacro-call-ring-2nd): Use it.
(kmacro-call-ring-2nd-repeat): Doc fix.
(kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
(kmacro-end-or-call-macro): Execute last viewed macro (using
kmacro-exec-ring-item) from ring if this follows
kmacro-view-macro.  This allows us to find a macro on the ring
with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
the ring to bring it to the head of the ring.
(kmacro-bind-to-key): Doc fix (describe reserved bindings).
Allow binding to reserved keys without specifying C-x C-k prefix.
Ask for confirmation if entered key sequence is already bound to
a non-macro command.
(kmacro-view-macro): Repeating command will show older elements
on the macro ring; C-k will execute the last viewed macro.
(kmacro-view-macro-repeat): Doc fix.  Change its kmacro-repeat
property from 'ring to 'head.
2003-08-17 22:04:44 +00:00
Kim F. Storm
100df2143b *** empty log message *** 2003-08-17 22:04:05 +00:00
Vinicius Jose Latorre
d73b08cbfe Adjust 2003-08-14 log order and format 2003-08-17 18:19:24 +00:00
Alex Schroeder
3cb0286846 *** empty log message *** 2003-08-17 09:52:49 +00:00
Alex Schroeder
e1f540f294 2003-08-14 Thu Jari Aalto <jari.aalto@poboxes.com>
* progmodes/compile.el (compilation-error-regexp-alist):
        Added Java ANt error detection as described in document
        http://ant.apache.org/faq.html
2003-08-17 09:49:42 +00:00
Alex Schroeder
735bbd126e (Saving Emacs Sessions): Manual M-x desktop-save not required. 2003-08-17 09:37:37 +00:00
Alex Schroeder
d12d93962c Commentary change.
(desktop-kill): Unquoted t.
2003-08-17 09:32:10 +00:00
Luc Teirlinck
b52a319db5 (Info-scroll-prefer-subnodes): Add :version keyword to defcustom,
because the default was recently changed.
2003-08-17 05:25:58 +00:00
Luc Teirlinck
215f7a2d7c *** empty log message *** 2003-08-17 05:23:07 +00:00
Richard M. Stallman
0e7d7aae70 *** empty log message *** 2003-08-17 00:27:53 +00:00
Richard M. Stallman
29e16385d0 (Fforward_word): Argument changed to optional. Set default value to 1. 2003-08-17 00:25:17 +00:00
Richard M. Stallman
2a6f12e29a (Fwrite_region): Fix conditional expression to issue the right message. 2003-08-17 00:24:34 +00:00
Richard M. Stallman
c24e982c71 (Fencode_time): Doc fix. 2003-08-17 00:24:04 +00:00
Richard M. Stallman
8968986e57 (Shell Command Guessing): Explain *. 2003-08-17 00:22:21 +00:00
Richard M. Stallman
6df73ca392 (ange-ftp-error): Add save-excursion. 2003-08-17 00:19:18 +00:00