comparison etc/NEWS @ 47283:0f65e6f1d100

Fix spacing.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 06 Sep 2002 09:07:31 +0000
parents f17f344680f2
children 52f90db3f174
comparison
equal deleted inserted replaced
47282:3b0f1a705853 47283:0f65e6f1d100
4371 zero or more occurrences of something are \"greedy\" in that they 4371 zero or more occurrences of something are \"greedy\" in that they
4372 match as much as they can, as long as the overall regexp can 4372 match as much as they can, as long as the overall regexp can
4373 still match. A non-greedy regexp matches as little as possible. 4373 still match. A non-greedy regexp matches as little as possible.
4374 4374
4375 `(maximal-match SEXP)' 4375 `(maximal-match SEXP)'
4376 produce a greedy regexp for SEXP. This is the default. 4376 produce a greedy regexp for SEXP. This is the default.
4377 4377
4378 `(zero-or-more SEXP)' 4378 `(zero-or-more SEXP)'
4379 matches zero or more occurrences of what SEXP matches. 4379 matches zero or more occurrences of what SEXP matches.
4380 4380
4381 `(0+ SEXP)' 4381 `(0+ SEXP)'
4416 4416
4417 `(repeat N M SEXP)' 4417 `(repeat N M SEXP)'
4418 matches N to M occurrences of what SEXP matches. 4418 matches N to M occurrences of what SEXP matches.
4419 4419
4420 `(eval FORM)' 4420 `(eval FORM)'
4421 evaluate FORM and insert result. If result is a string, 4421 evaluate FORM and insert result. If result is a string,
4422 `regexp-quote' it. 4422 `regexp-quote' it.
4423 4423
4424 `(regexp REGEXP)' 4424 `(regexp REGEXP)'
4425 include REGEXP in string notation in the result. 4425 include REGEXP in string notation in the result.
4426 4426
8570 write a file, it uses the specified coding system for that file. 8570 write a file, it uses the specified coding system for that file.
8571 8571
8572 If the immediately following command does not use the coding system, 8572 If the immediately following command does not use the coding system,
8573 then C-x RET c ultimately has no effect. 8573 then C-x RET c ultimately has no effect.
8574 8574
8575 For example, C-x RET c iso-8859-1 RET C-x C-f temp RET 8575 For example, C-x RET c iso-8859-1 RET C-x C-f temp RET
8576 visits the file `temp' treating it as ISO Latin-1. 8576 visits the file `temp' treating it as ISO Latin-1.
8577 8577
8578 *** You can specify the coding system for a file using the -*- 8578 *** You can specify the coding system for a file using the -*-
8579 construct. Include `coding: CODINGSYSTEM;' inside the -*-...-*- 8579 construct. Include `coding: CODINGSYSTEM;' inside the -*-...-*-
8580 to specify use of coding system CODINGSYSTEM. You can also 8580 to specify use of coding system CODINGSYSTEM. You can also