diff options
| author | Nicolas Petton | 2017-07-07 21:21:55 +0200 |
|---|---|---|
| committer | Nicolas Petton | 2017-07-11 10:07:16 +0200 |
| commit | 0bece6c6815cc59e181817a2765a4ea752f34f56 (patch) | |
| tree | 856363b2defed20c97a25c29a7739bce9a6bd9cb /src/buffer.c | |
| parent | 689c5c20d1174e95be50e674d05632545eb4b9c5 (diff) | |
| download | emacs-0bece6c6815cc59e181817a2765a4ea752f34f56.tar.gz emacs-0bece6c6815cc59e181817a2765a4ea752f34f56.zip | |
Add an optional testfn parameter to assoc
* src/fns.c (assoc): New optional testfn parameter used for comparison
when provided.
* test/src/fns-tests.el (test-assoc-testfn): Add tests for the new
'testfn' parameter.
* src/buffer.c:
* src/coding.c:
* src/dbusbind.c:
* src/font.c:
* src/fontset.c:
* src/gfilenotify.c:
* src/image.c:
* src/keymap.c:
* src/process.c:
* src/w32fns.c:
* src/w32font.c:
* src/w32notify.c:
* src/w32term.c:
* src/xdisp.c:
* src/xfont.c: Add a third argument to Fassoc calls.
* etc/NEWS:
* doc/lispref/lists.texi: Document the new 'testfn' parameter.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 780e4d7a7d6..e0972aac33c 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1164,7 +1164,7 @@ buffer_local_value (Lisp_Object variable, Lisp_Object buffer) | |||
| 1164 | { /* Look in local_var_alist. */ | 1164 | { /* Look in local_var_alist. */ |
| 1165 | struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (sym); | 1165 | struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (sym); |
| 1166 | XSETSYMBOL (variable, sym); /* Update In case of aliasing. */ | 1166 | XSETSYMBOL (variable, sym); /* Update In case of aliasing. */ |
| 1167 | result = Fassoc (variable, BVAR (buf, local_var_alist)); | 1167 | result = Fassoc (variable, BVAR (buf, local_var_alist), Qnil); |
| 1168 | if (!NILP (result)) | 1168 | if (!NILP (result)) |
| 1169 | { | 1169 | { |
| 1170 | if (blv->fwd) | 1170 | if (blv->fwd) |