about summary refs log tree commit diff
path: root/NEWS.md
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-11-12 21:22:09 +0100
committerLeah Neukirchen <leah@vuxu.org>2017-11-12 21:22:09 +0100
commit589243c74c93bef948dfdd2dc3613041c58b6918 (patch)
tree98a1c974c467f12422cad5f02b3bb8e2eac8d84d /NEWS.md
parent6d84edf84c184db1ef01243320441f7111ffb548 (diff)
downloadlr-589243c74c93bef948dfdd2dc3613041c58b6918.tar.gz
lr-589243c74c93bef948dfdd2dc3613041c58b6918.tar.xz
lr-589243c74c93bef948dfdd2dc3613041c58b6918.zip
add action 'skip' which is always false
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index 6b2968e..7732c35 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -2,6 +2,9 @@
 
 * Feature: new option `-B` for breadth first traversal.
 * Feature: new syntax `? :` for ternary operator.
+* Feature: new action `skip` which is always false.
+  The common find(1) idiom `-name x -prune -o -print`
+  is now best written as `name = "x" ? prune && skip : print`.
 * Significant speed-up as tsearch is not used anymore.
 
 ## 1.1 (2017-10-29)